adding an icon at the Recent calls listview

This commit is contained in:
tibbi
2020-05-09 20:59:59 +02:00
parent dbf69c2eb8
commit 6713f05ba7
2 changed files with 30 additions and 4 deletions

View File

@@ -37,14 +37,25 @@
android:textSize="@dimen/bigger_text_size"
tools:text="John Doe" />
<ImageView
android:id="@+id/item_recents_type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/item_recents_date_time"
android:layout_alignBottom="@+id/item_recents_date_time"
android:layout_marginEnd="@dimen/tiny_margin"
android:layout_toEndOf="@+id/item_recents_image"
android:alpha="0.6"
android:paddingTop="@dimen/tiny_margin"
android:paddingBottom="@dimen/tiny_margin"
android:src="@drawable/ic_incoming_call_vector" />
<TextView
android:id="@+id/item_recents_date_time"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/item_recents_name"
android:layout_alignStart="@+id/item_recents_name"
android:layout_toStartOf="@+id/item_recents_duration"
android:layout_toEndOf="@+id/item_recents_image"
android:layout_toEndOf="@+id/item_recents_type"
android:alpha="0.6"
android:maxLines="1"
android:textSize="@dimen/normal_text_size"
@@ -56,7 +67,9 @@
android:layout_height="wrap_content"
android:layout_below="@+id/item_recents_name"
android:layout_alignParentEnd="true"
android:layout_toEndOf="@+id/item_recents_date_time"
android:alpha="0.6"
android:gravity="end"
android:textSize="@dimen/normal_text_size"
tools:text="00:10" />