diff options
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/res/drawable/borderless_button_dark.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/src/main/res/drawable/borderless_button_dark.xml b/core/src/main/res/drawable/borderless_button_dark.xml new file mode 100644 index 000000000..6d263938d --- /dev/null +++ b/core/src/main/res/drawable/borderless_button_dark.xml @@ -0,0 +1,13 @@ +<?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"> + <solid android:color="@color/selection_background_color_dark" /> + </shape></item> + <item android:state_focused="true"><shape android:shape="rectangle"> + <solid android:color="@color/selection_background_color_dark" /> + </shape></item> + <item><shape android:shape="rectangle"> + <solid android:color="@android:color/transparent" /> + </shape></item> + +</selector>
\ No newline at end of file |