我见过很多有一个 ListView 的 Android 应用程序,这些应用程序与我的 ListViews 有一些不同。在他们的 ListView 滚动条中,如下所示:
在上图中,当您滚动列表时,将显示滚动条,您可以触摸它并更轻松地滚动。
但在我的应用程序中是这样的:
这是我的布局 xml 代码:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="4dp"
android:text="@string/do"
android:textSize="16dp" />
<ListView
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/main_background"
>
</ListView>
</LinearLayout>
我用谷歌搜索了很多次,但我没有找到任何技巧。任何人都可以帮助我如何让我的卷轴像第一张图一样?