Change summary
src/cheogram/res/drawable/thread_hint.xml | 40 +++++++++++++-------
src/main/res/drawable/ic_thread.xml | 8 ++++
src/main/res/layout/item_message_received.xml | 1
src/main/res/layout/item_message_sent.xml | 1
4 files changed, 35 insertions(+), 15 deletions(-)
Detailed changes
@@ -1,16 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
- <corners
- android:topLeftRadius="15dp"
- android:topRightRadius="15dp"
- android:bottomRightRadius="15dp"
- android:bottomLeftRadius="15dp" />
- <padding
- android:bottom="2dp"
- android:left="6dp"
- android:right="6dp"
- android:top="2dp" />
- <stroke
- android:width="1dp"
- android:color="?attr/colorAccent" />
-</shape>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:top="0dp" android:left="0dp">
+ <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
+ <corners
+ android:topLeftRadius="15dp"
+ android:topRightRadius="15dp"
+ android:bottomRightRadius="15dp"
+ android:bottomLeftRadius="15dp" />
+ <padding
+ android:bottom="2dp"
+ android:left="6dp"
+ android:right="6dp"
+ android:top="2dp" />
+ <stroke
+ android:width="1dp"
+ android:color="?attr/colorAccent" />
+ </shape>
+ </item>
+ <item
+ android:drawable="@drawable/ic_thread"
+ android:width="23dp"
+ android:height="23dp"
+ android:top="2dp"
+ android:left="-2dp" />
+</layer-list>
@@ -0,0 +1,10 @@
+<vector
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:height="24dp"
+ android:width="23.99958dp"
+ android:viewportHeight="501.85345"
+ android:viewportWidth="501.84467"
+ android:tint="?colorControlNormal"
+ >
@@ -98,6 +98,7 @@
<com.lelloman.identicon.view.GithubIdenticonView
android:id="@+id/thread_identicon"
+ android:background="@drawable/ic_thread"
android:visibility="gone"
android:layout_width="9dp"
android:layout_height="9dp"
@@ -89,6 +89,7 @@
<com.lelloman.identicon.view.GithubIdenticonView
android:id="@+id/thread_identicon"
+ android:background="@drawable/ic_thread"
android:visibility="gone"
android:layout_width="9dp"
android:layout_height="9dp"