我只想在我的 Listview 中使用 fastScrollEnabled 自定义滚动条,但这不起作用!启用 fastScroll 后,自定义滚动条在正常滚动时不可见,而在快速滚动时,它是默认滚动条。没有 fastScrollEnabled 确实可以正常工作。
res\values\Styles.xlm:
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:scrollbarThumbVertical">@drawable/scrollbar</item>
<item name="android:fastScrollThumbDrawable">@drawable/scrollbar</item>
<item name="android:fastScrollTrackDrawable">@drawable/scrollbar</item>
</style>
...
res\drawable\scrollbar.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient
android:angle="45"
android:endColor="#CC3401"
android:centerColor="#CC5c33"
android:startColor="#CC3401" />
<corners android:radius="8dp" />
<size android:width="4dp"/>
<padding
android:left="0.5dp"
android:right="0.5dp" />
</shape>
AndroidManifest.xml:
<application
android:theme="@style/AppTheme"
我的列表视图:
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff000020"
android:clickable="false"
android:fastScrollEnabled="true">
</ListView>
谁能告诉我这里出了什么问题?谢谢!