mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-16 20:59:18 +01:00
20 lines
664 B
XML
20 lines
664 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">
|
||
|
<solid android:color="#50FFFFFF" />
|
||
|
<stroke
|
||
|
android:width="2dp"
|
||
|
android:color="#A0FFFFFF" />
|
||
|
<size
|
||
|
android:width="25dp"
|
||
|
android:height="25dp" />
|
||
|
<corners
|
||
|
android:bottomLeftRadius="10dp"
|
||
|
android:bottomRightRadius="10dp"
|
||
|
android:topLeftRadius="50dp"
|
||
|
android:topRightRadius="10dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</layer-list>
|