2017-10-30 12:27:19 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<item
|
|
|
|
|
android:bottom="2dp"
|
|
|
|
|
android:left="2dp"
|
|
|
|
|
android:right="2dp"
|
|
|
|
|
android:top="2dp">
|
|
|
|
|
<rotate android:fromDegrees="45">
|
|
|
|
|
<shape>
|
|
|
|
|
<size
|
|
|
|
|
android:width="10dp"
|
|
|
|
|
android:height="10dp" />
|
2020-09-04 16:17:34 +00:00
|
|
|
<solid android:color="@color/content_background" />
|
2017-10-30 12:27:19 +00:00
|
|
|
<stroke
|
|
|
|
|
android:width="1dp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:color="@color/content_background_offset" />
|
2017-10-30 12:27:19 +00:00
|
|
|
</shape>
|
|
|
|
|
</rotate>
|
|
|
|
|
</item>
|
|
|
|
|
</layer-list>
|