mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-27 08:31:02 +00:00
30 lines
880 B
XML
30 lines
880 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<corners
|
|
android:bottomLeftRadius="0dp"
|
|
android:bottomRightRadius="0dp"
|
|
android:topLeftRadius="28dp"
|
|
android:topRightRadius="28dp" />
|
|
</shape>
|
|
</item>
|
|
<item
|
|
android:bottom="-50dp"
|
|
android:left="-3dp"
|
|
android:right="-3dp">
|
|
<shape>
|
|
<stroke
|
|
android:width="2dp"
|
|
android:color="@color/bg_black" />
|
|
<corners
|
|
android:bottomLeftRadius="0dp"
|
|
android:bottomRightRadius="0dp"
|
|
android:topLeftRadius="28dp"
|
|
android:topRightRadius="28dp" />
|
|
</shape>
|
|
</item>
|
|
</layer-list>
|
|
|
|
|