mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-29 14:17:41 +08:00
44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginEnd="5dp"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_sender_image"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_sender_status"
|
|
android:layout_width="10dp"
|
|
android:layout_height="10dp"
|
|
android:layout_marginStart="14dp"
|
|
android:layout_marginTop="-10dp"
|
|
tools:ignore="ContentDescription,VisualLintBounds" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_sender_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:maxEms="10"
|
|
android:maxLines="1"
|
|
android:textSize="9sp"
|
|
tools:ignore="SmallSp" />
|
|
|
|
</LinearLayout> |