76 lines
2.3 KiB
XML
76 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="250dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_dialog"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
android:layout_marginTop="15dp"
|
|
android:text="@string/dialog_tip"
|
|
android:textColor="#161616"
|
|
android:textSize="15sp"
|
|
android:gravity="center_horizontal"/>
|
|
|
|
<EditText
|
|
android:id="@+id/content"
|
|
android:layout_width="190dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginRight="15dp"
|
|
android:background="@drawable/bg_dialog_input"
|
|
android:gravity="center"
|
|
android:paddingBottom="10dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:paddingTop="10dp"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="14sp"
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:layout_marginBottom="23dp"
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/btn_cancel"
|
|
android:layout_width="87dp"
|
|
android:layout_height="33dp"
|
|
android:gravity="center"
|
|
android:text="@string/cancel"
|
|
android:textColor="#B1B1B1"
|
|
android:layout_marginRight="7dp"
|
|
android:textSize="14sp"
|
|
android:background="@mipmap/tipbox_btn_gray"
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/btn_confirm"
|
|
|
|
android:layout_width="87dp"
|
|
android:layout_height="33dp"
|
|
android:gravity="center"
|
|
android:layout_marginLeft="7dp"
|
|
android:text="@string/confirm"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="14sp"
|
|
android:background="@mipmap/tipbox_btn_orange"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |