2

我见过很多有一个 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>

我用谷歌搜索了很多次,但我没有找到任何技巧。任何人都可以帮助我如何让我的卷轴像第一张图一样?

4

3 回答 3

5

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

    android:fastScrollEnabled="true"
    android:scrollbars="none
于 2012-09-19T13:02:39.963 回答
3

在列表视图的属性中设置android:fastScrollEnabled="true"。此外,如果您希望快速滚动拇指始终可见,请设置 android:fastScrollAlwaysVisible="true"

然后,在列表视图的 xml 定义中,您将拥有如下内容:

<ListView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:fastScrollAlwaysVisible="true"
    android:fastScrollEnabled="true" >
</ListView>
于 2012-09-19T12:59:52.573 回答
-1
Hi Use This attribute in your ListView which you declare in you layout file.

android:scrollbars="none"
于 2012-09-19T13:01:47.307 回答