14 lines
472 B
XML
14 lines
472 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<!-- Button Background Color -->
|
||
|
|
<solid android:color="@android:color/transparent" /> <!-- Transparent background -->
|
||
|
|
|
||
|
|
<!-- Button Border -->
|
||
|
|
<stroke
|
||
|
|
android:width="2dp"
|
||
|
|
android:color="#000000" /> <!-- Change border color here -->
|
||
|
|
|
||
|
|
<!-- Border Radius -->
|
||
|
|
<corners android:radius="12dp" /> <!-- Adjust radius here -->
|
||
|
|
</shape>
|