| 12345678910111213141516171819202122232425262728 |
- <?xml version="1.0" encoding="utf-8"?>
- <selector xmlns:android="http://schemas.android.com/apk/res/android">
- <!-- 按压状态 -->
- <item android:state_pressed="true">
- <shape android:shape="rectangle">
- <corners android:topLeftRadius="@dimen/dialog_menu_round_size" android:topRightRadius="@dimen/dialog_menu_round_size" />
- <solid android:color="@color/dialog_bg_press" />
- </shape>
- </item>
- <!-- 焦点状态 -->
- <item android:state_focused="true">
- <shape android:shape="rectangle">
- <corners android:topLeftRadius="@dimen/dialog_menu_round_size" android:topRightRadius="@dimen/dialog_menu_round_size" />
- <solid android:color="@color/dialog_bg_press" />
- </shape>
- </item>
- <!-- 默认状态 -->
- <item>
- <shape android:shape="rectangle">
- <corners android:topLeftRadius="@dimen/dialog_menu_round_size" android:topRightRadius="@dimen/dialog_menu_round_size" />
- <solid android:color="@color/dialog_bg" />
- </shape>
- </item>
- </selector>
|