New file |
| | |
| | | <?xml version="1.0" encoding="utf-8"?>
|
| | | <selector xmlns:android="http://schemas.android.com/apk/res/android">
|
| | | <item android:state_checked="true">
|
| | | <shape >
|
| | | <corners android:bottomRightRadius="50dp"
|
| | | android:topRightRadius="50dp"
|
| | | android:topLeftRadius="@dimen/view_size_0"
|
| | | android:bottomLeftRadius="@dimen/view_size_0"/>
|
| | | <solid android:color="@color/colorPrimary"/>
|
| | | <padding android:bottom="@dimen/view_size_5"
|
| | | android:top="@dimen/view_size_5"
|
| | | android:left="@dimen/view_size_10"
|
| | | android:right="@dimen/view_size_10"/>
|
| | | </shape>
|
| | | </item>
|
| | | <item android:state_checked="false">
|
| | | <shape >
|
| | | <corners android:bottomRightRadius="50dp"
|
| | | android:topRightRadius="50dp"
|
| | | android:topLeftRadius="@dimen/view_size_0"
|
| | | android:bottomLeftRadius="@dimen/view_size_0"/>
|
| | | <solid android:color="@android:color/white"/>
|
| | | <padding android:bottom="@dimen/view_size_5"
|
| | | android:top="@dimen/view_size_5"
|
| | | android:left="@dimen/view_size_10"
|
| | | android:right="@dimen/view_size_10"/>
|
| | | <stroke android:color="@color/colorPrimary"
|
| | | android:width="@dimen/view_size_1"/>
|
| | | </shape>
|
| | | </item>
|
| | | </selector> |