我创建了一个列表视图,我需要增加垂直滚动条的宽度.我更改了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>
解决方法:
您的滚动条将缩放为您为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>