6 lines
233 B
XML
6 lines
233 B
XML
|
|
<!-- res/drawable/red_round_button.xml -->
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
<solid android:color="@color/themeColor" />
|
||
|
|
<corners android:radius="4dp" />
|
||
|
|
</shape>
|