PlayerAndroid/app/src/main/res/drawable/bg_circular_top_corners.xml

12 lines
400 B
XML
Raw Normal View History

2018-08-01 06:51:27 +00:00
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
2018-11-28 05:37:10 +00:00
xmlns:tools="http://schemas.android.com/tools"
2018-08-08 08:03:38 +00:00
android:shape="rectangle">
<corners
android:topLeftRadius="12dp"
android:topRightRadius="12dp" />
2018-11-28 05:37:10 +00:00
<solid
android:color="?attr/cardBackgroundColor"
tools:color="@color/md_deep_purple_A700" />
2018-08-22 17:54:07 +00:00
2018-08-01 06:51:27 +00:00
</shape>