android-jingyuan-RFID/app/src/main/res/layout/dialog_layout.xml

43 lines
1.3 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="wrap_content"
android:background="@drawable/dialog_bg"
android:orientation="vertical">
<TextView
style="@style/title_text"
android:layout_width="match_parent"
android:layout_height="55dp"
android:letterSpacing="1"
android:text="提示"
android:textSize="20sp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#e1e1e1"/>
<EditText
android:id="@+id/dialog_text"
style="@style/title_text"
android:layout_width="match_parent"
android:layout_height="55dp"
android:layout_margin="30dp"
android:inputType="number"
android:background="@drawable/santext" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#e1e1e1"/>
<TextView
android:id="@+id/dialog1_button"
android:layout_width="match_parent"
android:layout_height="55dp"
android:text="确定"
android:textSize="18sp"
android:gravity="center"
android:letterSpacing="0.5"
android:textColor="@color/teal_700"/>
</LinearLayout>