21 lines
601 B
XML
21 lines
601 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item
|
|
android:top="0dp"
|
|
android:left="-2dp"
|
|
android:right="-2dp"
|
|
android:bottom="-2dp">
|
|
|
|
<shape
|
|
android:shape="rectangle">
|
|
|
|
<solid android:color="@color/statistic_sheet_background_expanded" />
|
|
<corners android:topLeftRadius="20dp" android:topRightRadius="20dp" />
|
|
<stroke android:width="1dp" android:color="@color/statistic_sheet_background_border"/>
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
</layer-list>
|