2019-04-04 10:31:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<item>
|
|
|
|
|
<shape android:shape="rectangle">
|
2020-09-04 16:17:34 +00:00
|
|
|
<solid android:color="@color/content_background_offset" />
|
2019-04-04 10:31:27 +00:00
|
|
|
<corners android:radius="4dp" android:topLeftRadius="8dp" android:topRightRadius="8dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
|
|
|
|
|
<item android:bottom="4dp">
|
|
|
|
|
<shape android:shape="rectangle">
|
2020-09-04 16:17:34 +00:00
|
|
|
<solid android:color="@color/window_background" />
|
2019-04-04 10:31:27 +00:00
|
|
|
<corners android:topLeftRadius="4dp" android:topRightRadius="4dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
</layer-list>
|