mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
18 lines
658 B
XML
18 lines
658 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<item android:state_selected="true">
|
||
|
<shape android:shape="rectangle">
|
||
|
<corners android:radius="8dp" />
|
||
|
<solid android:color="?attr/colorAccent" />
|
||
|
<size android:width="6dp" android:height="54dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
<item>
|
||
|
<shape android:shape="rectangle">
|
||
|
<corners android:radius="8dp" />
|
||
|
<solid android:color="@color/fast_scroller_handle_idle" />
|
||
|
<size android:width="6dp" android:height="54dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</selector>
|