如何减小 FastScroll 拇指大小

How to Decrease FastScroll Thumb Size

左图 - 这是我需要的 Fast Scroll Thumb(小)尺寸。
右图 - 这是我得到的尺寸(很大)。

MyFragment.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">


<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"></ListView>
</RelativeLayout>

style.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/ColorPrimary</item>
    <item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
</style>

<style name="AppTheme.Main" parent="Theme.AppCompat">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/ColorPrimary</item>
    <item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
    <item name="android:fastScrollThumbDrawable">@drawable/ic_datejumper</item>
    <item name="android:fastScrollTrackDrawable">@android:color/transparent</item>
</style>

<style name="AppTheme.Pref" parent="Theme.AppCompat">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/ColorPrimary</item>
    <item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
</style>

</resources>

我尝试了我在 Internet 和 Whosebug 上找到的所有方法
如需查看,左图来自Google照片应用

刚找到一个不寻常的答案
我将 png 放在 drawables-xhdpi 文件夹中,这就成功了