mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-15 15:35:09 +01:00
24 lines
854 B
XML
24 lines
854 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
tools:background="#FFFF00"
|
||
|
android:color="?android:attr/colorAccent">
|
||
|
<item android:id="@android:id/mask">
|
||
|
<shape android:shape="rectangle">
|
||
|
<solid android:color="?android:attr/colorAccent" />
|
||
|
<corners android:radius="13dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
|
||
|
<item android:id="@android:id/background">
|
||
|
<shape
|
||
|
android:shape="rectangle">
|
||
|
<corners android:radius="16dp"/>
|
||
|
<size
|
||
|
android:height="32dp"
|
||
|
android:width="32dp" />
|
||
|
<solid android:color="#AD212121"/>
|
||
|
<stroke android:width="0.1dp" android:color="#EDEDED" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</ripple>
|