summaryrefslogtreecommitdiff
path: root/core/src/main/res/drawable/scrollbar_thumb_default.xml
blob: 5e8a98b44fe3c6bbd0ec93c3cf2f7d5cdf122327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <size android:height="24dp" android:width="24dp"/>
        </shape>
    </item>
    <item android:gravity="end">
        <shape android:shape="rectangle">
            <solid android:color="#99666666"/>
            <size android:height="4dp" android:width="4dp"/>
        </shape>
    </item>
</layer-list>