2020-10-03 12:09:35 +02:00
|
|
|
<?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
|
2020-10-03 19:20:36 +02:00
|
|
|
android:width="2dp"
|
|
|
|
android:color="#A0FFFFFF" />
|
2020-10-03 12:09:35 +02:00
|
|
|
<size
|
2020-10-03 19:20:36 +02:00
|
|
|
android:width="25dp"
|
|
|
|
android:height="25dp" />
|
2020-10-03 12:09:35 +02:00
|
|
|
<corners
|
2020-10-03 19:20:36 +02:00
|
|
|
android:bottomLeftRadius="10dp"
|
|
|
|
android:bottomRightRadius="10dp"
|
|
|
|
android:topLeftRadius="10dp"
|
|
|
|
android:topRightRadius="50dp" />
|
2020-10-03 12:09:35 +02:00
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
</layer-list>
|