我有一个标准的ListView。它没有显示滚动条轨道拇指。是否需要设置一些特殊设置才能显示滚动条?我的定义如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:dividerHeight="1dip" />
</LinearLayout>
listview包含数据,并且有足够的项目可供滚动。
由于
答案 0 :(得分:5)
尝试包括:
android:scrollbars="vertical"
http://developer.android.com/reference/android/view/View.html#attr_android:scrollbars
或:
android:layout_height="wrap"