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

27 lines
812 B
XML

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android" color="#4f2a81">
<item
id="@android:id/mask"
drawable="@drawable/bg_button"/>
<item>
<selector>
<item state_enabled="false">
<shape shape="rectangle">
<stroke
width="1dp"
color="#99ffffff"/>
<corners radius="4dp"/>
</shape>
</item>
<item>
<shape shape="rectangle">
<stroke
width="1dp"
color="#ffffff"/>
<corners radius="4dp"/>
</shape>
</item>
</selector>
</item>
</ripple>