fix #35, show a tick at successfully sent last messages

This commit is contained in:
tibbi 2020-08-23 21:43:50 +02:00
parent e66a24c8f8
commit 349ff11957
6 changed files with 38 additions and 10 deletions

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/thread_date_time"
android:id="@+id/thread_error"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:paddingEnd="@dimen/activity_margin">
<ImageView
android:id="@+id/thread_success"
android:layout_width="@dimen/activity_margin"
android:layout_height="@dimen/activity_margin"
android:src="@drawable/ic_check_vector" />
</RelativeLayout>