12 lines
318 B
XML
12 lines
318 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
|
|
<!-- Background color -->
|
|
<solid android:color="#CC1515" /> <!-- This is Material Red 500 -->
|
|
|
|
<!-- Rounded corners -->
|
|
<corners android:radius="08dp" />
|
|
|
|
</shape>
|