SmsForwarder/app/src/main/res/layout/item_add_header.xml
2022-06-06 16:56:20 +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/icon_delete"
app:tint="@color/design_default_color_error" />
</LinearLayout>