1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8"?>
- <selector xmlns:android="http://schemas.android.com/apk/res/android">
- <!--<item-->
- <!--android:state_enabled="false"-->
- <!--android:drawable="@drawable/google_bg_btn_text_disabled" />-->
- <!--<!– Pressed state is handled by common_google_signin_btn_tint –>-->
- <!--<item-->
- <!--android:state_focused="true"-->
- <!--android:drawable="@drawable/google_bg_btn_text_light_focused" />-->
- <item>
- <shape xmlns:android="http://schemas.android.com/apk/res/android">
- <corners android:radius="@dimen/DIMEN_5DP"/>
- <solid android:color="@color/bssdk_toast_custom_color_solid"/>
- <stroke android:width="1px" android:color="@color/bssdk_toast_custom_color_stroke"/>
- </shape>
- </item>
- </selector>
|