使ListView Scrollbar与众不同,更有用

时间:2012-09-19 12:54:33

标签: android android-listview android-scrollbar

我见过很多Android应用程序,它们的ListView与我的ListViews存在一些差异。在ListView滚动栏中,如下所示:

enter image description here

滚动列表时,上图中的

将显示滚动条,您可以触摸它并滚动更容易。

但在我的应用程序中看到这样:

enter image description here

这是我的布局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>
我曾多次用Google搜索,但我没有找到任何技巧。任何人都可以帮助我如何使我的卷轴像图片一样?

3 个答案:

答案 0 :(得分:5)

您可以在列表视图中添加这些行。它对我有用。

    android:fastScrollEnabled="true"
    android:scrollbars="none

答案 1 :(得分:3)

在listview的属性中设置android:fastScrollEnabled="true"。 此外,如果您希望始终可以看到快速滚动缩略图,请设置android:fastScrollAlwaysVisible="true"

然后,在listview的xml定义中,你会有这样的东西:

<ListView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:fastScrollAlwaysVisible="true"
    android:fastScrollEnabled="true" >
</ListView>

答案 2 :(得分:-1)

Hi Use This attribute in your ListView which you declare in you layout file.

android:scrollbars="none"