Created
October 14, 2019 14:35
-
-
Save muzafakar/c5da18a3118f99ec93bf4ea75e906af3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!--On--> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item> | |
<shape | |
android:innerRadius="0dp" | |
android:shape="ring" | |
android:thickness="4dp" | |
android:useLevel="false"> | |
<solid android:color="@color/colorPrimary" /> | |
</shape> | |
</item> | |
</layer-list> | |
<!--Off--> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item> | |
<shape | |
android:innerRadius="0dp" | |
android:shape="ring" | |
android:thickness="4dp" | |
android:useLevel="false"> | |
<solid android:color="@color/colorGray" /> | |
</shape> | |
</item> | |
</layer-list> | |
<!--Selector--> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:drawable="@drawable/dots_on" android:state_selected="true" /> | |
<item android:drawable="@drawable/dots_off" android:state_selected="false" /> | |
</selector> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment