SmsForwarder/app/src/main/res/layout/item_add_header.xml
pppscn 6473b3eb7c 优化:MainActivity 内容填充方式(避免一次性加载多个Fragment)&& 提升APP启动速度与稳定性
优化:左滑菜单 与 TabBar 美化
精简:界面调整 & 去除不常用资源
整理:code review
2023-12-19 23:52:50 +08:00

47 lines
1.6 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"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/header_key" />
<com.xuexiang.xui.widget.edittext.materialedittext.MaterialEditText
android:id="@+id/editTextHeaderKey"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_weight="1"
android:singleLine="true"
app:met_clearButton="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:text="@string/header_value" />
<com.xuexiang.xui.widget.edittext.materialedittext.MaterialEditText
android:id="@+id/editTextHeaderValue"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_weight="1"
android:singleLine="true"
app:met_clearButton="true" />
<ImageView
android:id="@+id/imageViewRemoveHeader"
android:layout_width="18dp"
android:layout_height="18dp"
android:contentDescription="@string/header_del"
android:src="@drawable/ic_delete"
app:tint="#F15C58" />
</LinearLayout>