trkpt/app/src/main/res/drawable/shape_statistics_background_expanded.xml
2020-07-31 20:06:53 -04:00

24 lines
654 B
XML

<?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="0dp">
<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>