滚动条没有显示在ListView上?

use*_*114 3 android

我有一个标准的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>
Run Code Online (Sandbox Code Playgroud)

列表视图包含数据,并且有足够的项目可以滚动.

谢谢