summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/drawer_status.xml
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2022-06-15 16:47:39 +0200
committerThomas <tschneider.ac@gmail.com>2022-06-15 16:47:39 +0200
commitf09510a217fb27e3da08142f2709851baabbf851 (patch)
tree06b2a75d369ab5fe85546b25f06779dccad3bbf3 /app/src/main/res/layout/drawer_status.xml
parente776ea99a18c87a0a87c7270ed2bc0c36d7f205d (diff)
Some fixes and improvements
Diffstat (limited to 'app/src/main/res/layout/drawer_status.xml')
-rw-r--r--app/src/main/res/layout/drawer_status.xml40
1 files changed, 34 insertions, 6 deletions
diff --git a/app/src/main/res/layout/drawer_status.xml b/app/src/main/res/layout/drawer_status.xml
index 22b4d1118..93808fc2a 100644
--- a/app/src/main/res/layout/drawer_status.xml
+++ b/app/src/main/res/layout/drawer_status.xml
@@ -96,12 +96,40 @@
android:orientation="horizontal"
android:padding="6dp">
- <androidx.appcompat.widget.AppCompatImageView
- android:id="@+id/avatar"
- android:layout_width="36dp"
- android:layout_height="36dp"
- android:scaleType="centerInside"
- tools:src="@tools:sample/avatars" />
+ <androidx.constraintlayout.widget.ConstraintLayout
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent">
+
+ <androidx.appcompat.widget.AppCompatImageView
+ android:id="@+id/avatar"
+ android:layout_width="36dp"
+ android:layout_height="36dp"
+ android:scaleType="centerInside"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent"
+ tools:src="@tools:sample/avatars" />
+
+ <androidx.appcompat.widget.AppCompatImageView
+ android:id="@+id/reply_icon"
+ android:layout_width="16dp"
+ android:layout_height="16dp"
+ android:src="@drawable/ic_baseline_reply_16"
+ android:visibility="gone"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent" />
+
+ <androidx.appcompat.widget.AppCompatImageView
+ android:id="@+id/bot_icon"
+ android:layout_width="16dp"
+ android:layout_height="16dp"
+ android:src="@drawable/ic_baseline_reply_16"
+ android:visibility="gone"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent" />
+ </androidx.constraintlayout.widget.ConstraintLayout>
+
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"