如何制作可以通过触摸处理的滚动条?

时间:2017-07-11 18:43:16

标签: android

想要在我的活动中插入一个简单的滚动条,用户可以通过滚动(通过触摸)来处理....例如:就像我们在联系人应用中有滚动条一样。

举个例子:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.symplycode.youtubeembed.MainActivity">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<WebView
    android:id="@+id/webview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
</LinearLayout>

</ScrollView>

有人得到它吗?

1 个答案:

答案 0 :(得分:0)

您应该使用recyclerview,为它创建适配器和视图,并将其连接到您的数据服务,它可以是本地的,当内容超出屏幕大小时,它会自动变为可滚动。