aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/message_bubble_sent_blue_dark.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-05-20 00:47:26 +0200
committerChristian Schneppe <christian@pix-art.de>2018-05-21 20:30:46 +0200
commit13c11f4100d14fb9d70adb0ca0a48019b29b26c6 (patch)
treefa28e030f842c916f5354e98e133c21d41113525 /src/main/res/drawable/message_bubble_sent_blue_dark.xml
parent07e2fb571407f5fac3a86a7a19885d90046fc897 (diff)
fix some crashes on Android 4 devices
Diffstat (limited to '')
-rw-r--r--src/main/res/drawable/message_bubble_sent_blue_dark.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/res/drawable/message_bubble_sent_blue_dark.xml b/src/main/res/drawable/message_bubble_sent_blue_dark.xml
new file mode 100644
index 000000000..6257e0078
--- /dev/null
+++ b/src/main/res/drawable/message_bubble_sent_blue_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
+ <corners
+ android:topLeftRadius="5dp"
+ android:topRightRadius="5dp"
+ android:bottomRightRadius="0dp"
+ android:bottomLeftRadius="5dp">
+ </corners>
+ <padding
+ android:bottom="4dp"
+ android:left="6dp"
+ android:right="6dp"
+ android:top="4dp" />
+ <stroke
+ android:width="1dp"
+ android:color="@color/grey800">
+ </stroke>
+ <solid
+ android:color="@color/darkblue">
+ </solid>
+</shape> \ No newline at end of file