12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:state_selected="true">
- <shape>
- <solid android:color="@color/super_cw_color_pressed" />
- <corners android:radius="@dimen/super_dimen_5.00dp" />
- </shape>
- </item>
- <item android:state_pressed="true">
- <shape>
- <solid android:color="@color/super_cw_color_pressed" />
- <corners android:radius="@dimen/super_dimen_5.00dp" />
- </shape>
- </item>
- <item>
- <shape>
- <solid android:color="@color/super_cw_color_main" />
- <corners android:radius="@dimen/super_dimen_5.00dp" />
- </shape>
- </item>
- </selector>
|