aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/date_bubble.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2017-02-16 20:58:27 +0100
committerChristian Schneppe <christian@pix-art.de>2017-02-19 20:04:26 +0100
commitb8cce73649a8c61fba3786f6804a0bf8db9ae055 (patch)
treeb8698c5696cde9e67404f48099eaeb4a75ae642b /src/main/res/drawable/date_bubble.xml
parent269ff52846f53b7e0fa6f31cf9099bd756f52333 (diff)
add date bubble in chatlist
fixes #104
Diffstat (limited to 'src/main/res/drawable/date_bubble.xml')
-rw-r--r--src/main/res/drawable/date_bubble.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/res/drawable/date_bubble.xml b/src/main/res/drawable/date_bubble.xml
new file mode 100644
index 000000000..3edf349e9
--- /dev/null
+++ b/src/main/res/drawable/date_bubble.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="5dp"
+ android:bottomLeftRadius="5dp">
+ </corners>
+ <padding
+ android:bottom="6dp"
+ android:left="6dp"
+ android:right="6dp"
+ android:top="6dp" />
+ <stroke
+ android:width="1dp"
+ android:color="@color/grey500">
+ </stroke>
+ <solid
+ android:color="@color/lightgreen">
+ </solid>
+</shape> \ No newline at end of file