mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-03 01:17:41 +08:00
68 lines
2.5 KiB
XML
68 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/xui_config_color_white"
|
|
android:orientation="vertical"
|
|
tools:ignore="UseCompoundDrawables">
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?attr/xui_config_color_separator_light" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_frpc_image"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
tools:ignore="ContentDescription,UseAppTint" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_frpc_status"
|
|
android:layout_width="10dp"
|
|
android:layout_height="10dp"
|
|
android:layout_marginStart="14dp"
|
|
android:layout_marginTop="-10dp"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_frpc_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:ellipsize="marquee"
|
|
android:minHeight="?attr/ms_item_height_size"
|
|
android:paddingStart="?attr/ms_padding_left_size"
|
|
android:paddingTop="?attr/ms_padding_top_size"
|
|
android:paddingEnd="?attr/ms_padding_left_size"
|
|
android:paddingBottom="?attr/ms_padding_top_size"
|
|
android:singleLine="true"
|
|
tools:ignore="PrivateResource" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_remove_frpc"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:contentDescription="@string/frpc_del"
|
|
android:src="@drawable/ic_delete"
|
|
app:tint="#F15C58" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |