what-the-bank/resources/res/drawable/bg_button_accept_decline.xml

22 lines
640 B
XML

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item state_selected="false">
<shape shape="rectangle">
<solid color="@android:color/transparent"/>
<stroke
width="2dp"
color="#eae7ec"/>
<corners radius="8dp"/>
</shape>
</item>
<item>
<shape shape="rectangle">
<solid color="@android:color/transparent"/>
<stroke
width="2dp"
color="#7631c1"/>
<corners radius="8dp"/>
</shape>
</item>
</selector>