mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-03 01:17:41 +08:00
78 lines
2.5 KiB
XML
78 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="34dp"
|
|
android:layout_height="34dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginTop="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/tlog_sender_image"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/tlog_status_image"
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:layout_marginLeft="18dp"
|
|
android:layout_marginTop="-14dp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="8dp"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tlog_from"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/tlog_rule"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/tlog_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginRight="24dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/tlog_sim_image"
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:layout_alignParentEnd="true" />
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tlog_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginBottom="10dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|