1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/tysdkn_pay_item"
- android:gravity="center"
- android:layout_gravity="center"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tysdkn_dialog_add_id_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:layout_marginBottom="20dp"
- android:text="添加小号"
- android:textColor="#111111"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/tysdkn_dialog_add_id_new_name"
- android:layout_width="match_parent"
- android:layout_height="33dp"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:background="@drawable/tysdkn_edit_two_bg"
- android:padding="5dp"
- android:lineSpacingExtra="5dp"
- android:textSize="12sp"
- android:textColor="#999999"
- android:maxEms="20"
- tools:text=""/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="38dp"
- android:layout_marginTop="30dp"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tysdkn_dialog_id_cancle"
- android:layout_width="0dp"
- android:layout_height="42dp"
- android:layout_weight="1"
- android:background="@drawable/tysdkn_btn_dialog_cancle"
- android:gravity="center"
- android:text="取消"
- android:textColor="#111111"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/tysdkn_dialog_id_sure"
- android:layout_width="0dp"
- android:layout_height="42dp"
- android:layout_weight="1"
- android:background="@drawable/tysdkn_btn_dialog_sure"
- android:gravity="center"
- android:text="发送"
- android:textColor="#FFFFFF"
- android:textSize="16sp" />
- </LinearLayout>
- </LinearLayout>
|