我创建了一个列表视图。我需要增加垂直滚动条的宽度。我改变了android:scrollbarSize。但它不起作用。也想减少滚动条拇指的长度。它是否可行。请帮我。
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ListView
android:id="@+id/list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:scrollbarAlwaysDrawVerticalTrack="true"
android:scrollX="0px"
android:scrollY="0px"
android:background="#515151"
android:layout_weight="1"
android:scrollbarStyle="outsideOverlay"
android:divider="#FFF"
android:fadeScrollbars="false"
android:scrollbarSize="20dip"/>
</LinearLayout>
答案 0 :(得分:2)
您的滚动条将缩放到您为android:scrollbarTrackHorizontal
和android:scrollbarTrackVertical
指定的资源的宽度/高度。
这似乎是我现在可以解决的唯一方法,而且我不会再用它了;)
因此,如果你想要一个8px宽的水平轨道和一个12px高的垂直轨道。为水平轨道创建宽度为8px的PNG。为水平轨道创建一个12px高的PNG。您的android:scrollbarThumbHorizontal
和android:scrollbarThumbHorizontal
的九个补丁会自动缩放到这些图片中。
<item name="android:scrollbarTrackHorizontal">@drawable/png_12px_high</item>
<item name="android:scrollbarTrackVertical">@drawable/png_8px_wide</item>
答案 1 :(得分:1)
我问了同样的问题但未收到任何答复:android ignores scrollbarsize
然后,有一个问题已经打开,但关闭它说“按预期工作”: http://code.google.com/p/android/issues/detail?id=7711&can=1&q=scrollbar%20width&colspec=ID%20Type%20Status%20Owner%20Summary%20Stars
到目前为止,我还没有看到解决方案,所以我没有那么多研究。如果您找到任何解决方案,请更新此问题。