10 lines
279 B
XML
10 lines
279 B
XML
|
|
<!-- res/drawable/rounded_box.xml -->
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
|
||
|
|
<solid android:color="#C8DAF2" /> <!-- Light blue background -->
|
||
|
|
|
||
|
|
<corners android:radius="12dp" /> <!-- Rounded corners -->
|
||
|
|
|
||
|
|
</shape>
|