diff options
Diffstat (limited to 'android/src/main/res/drawable')
| -rw-r--r-- | android/src/main/res/drawable/icon_notification_error.xml | 8 | ||||
| -rw-r--r-- | android/src/main/res/drawable/transparent_red_button_background.xml | 16 |
2 files changed, 24 insertions, 0 deletions
diff --git a/android/src/main/res/drawable/icon_notification_error.xml b/android/src/main/res/drawable/icon_notification_error.xml new file mode 100644 index 0000000000..d285967fe6 --- /dev/null +++ b/android/src/main/res/drawable/icon_notification_error.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape + xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="oval" + > + <solid android:color="@color/red"/> + <size android:width="10dp" android:height="10dp"/> +</shape> diff --git a/android/src/main/res/drawable/transparent_red_button_background.xml b/android/src/main/res/drawable/transparent_red_button_background.xml new file mode 100644 index 0000000000..6f5a86b205 --- /dev/null +++ b/android/src/main/res/drawable/transparent_red_button_background.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="false"> + <shape android:shape="rectangle"> + <corners android:radius="4dp"/> + <solid android:color="@color/red40"/> + </shape> + </item> + + <item android:state_pressed="true"> + <shape android:shape="rectangle"> + <corners android:radius="4dp"/> + <solid android:color="@color/red45"/> + </shape> + </item> +</selector> |
