aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/message_bubble_received_warning.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/res/drawable/message_bubble_received_warning.xml')
-rw-r--r--src/main/res/drawable/message_bubble_received_warning.xml48
1 files changed, 28 insertions, 20 deletions
diff --git a/src/main/res/drawable/message_bubble_received_warning.xml b/src/main/res/drawable/message_bubble_received_warning.xml
index b3bf6d451..ae3222a9e 100644
--- a/src/main/res/drawable/message_bubble_received_warning.xml
+++ b/src/main/res/drawable/message_bubble_received_warning.xml
@@ -1,21 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
- <corners
- android:topLeftRadius="0dp"
- android:topRightRadius="5dp"
- android:bottomRightRadius="5dp"
- android:bottomLeftRadius="5dp">
- </corners>
- <padding
- android:bottom="4dp"
- android:left="6dp"
- android:right="6dp"
- android:top="4dp" />
- <stroke
- android:width="1dp"
- android:color="@color/grey500">
- </stroke>
- <solid
- android:color="@color/lightred">
- </solid>
-</shape> \ No newline at end of file
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:gravity="top|left">
+ <vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="36dp"
+ android:height="24dp"
+ android:viewportWidth="36"
+ android:viewportHeight="24" >
+ <path
+ android:fillColor="@color/lightred"
+ android:pathData="m2,0 c6,0 10,6 10,10L18,0z" />
+ </vector>
+ </item>
+ <item android:left="12dp">
+ <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
+ <corners
+ android:topLeftRadius="0dp"
+ android:topRightRadius="5dp"
+ android:bottomRightRadius="5dp"
+ android:bottomLeftRadius="5dp" />
+ <padding
+ android:bottom="2dp"
+ android:left="18dp"
+ android:right="6dp"
+ android:top="2dp" />
+ <solid android:color="@color/lightred" />
+ </shape>
+ </item>
+</layer-list>