Created
July 13, 2018 14:08
-
-
Save zawzaww/69f73d76ed7be20efce450f7645f87a6 to your computer and use it in GitHub Desktop.
Sample selector for using background color and button.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item> | |
<shape> | |
<solid android:color="@android:color/white" /> | |
<corners android:radius="3dp" /> | |
<stroke android:width="2dp" android:color="@color/color_primary" /> | |
</shape> | |
</item> | |
</selector> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment