1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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="400dp"
- android:layout_height="230dp"
- android:background="@drawable/tysdkn_center_frag_bg"
- android:gravity="center"
- android:orientation="vertical">
- <EditText
- android:id="@+id/tysdkn_dialog_input_et"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_margin="10dp"
- android:layout_weight="1"
- android:background="@drawable/tysdkn_edit_two_bg"
- android:gravity="top"
- android:padding="5dp"
- android:textColor="#333333"
- tools:text="风刀霜剑卡返回键看撒谎飞机客户刷卡机积分兑换手机卡"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tysdkn_dialog_inputtext_nvi"
- android:layout_width="0dp"
- android:layout_height="35dp"
- android:layout_marginRight="5dp"
- android:layout_weight="1"
- android:background="@drawable/tysdkn_edit_two_bg"
- android:gravity="center"
- android:text="取消"
- android:textColor="#111111"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/tysdkn_dialog_inputtext_pos"
- android:layout_width="0dp"
- android:layout_height="35dp"
- android:layout_marginLeft="5dp"
- android:layout_weight="1"
- android:background="@drawable/tysdkn_login_in"
- android:gravity="center"
- android:text="发送"
- android:textColor="#FFFFFF"
- android:textSize="16sp" />
- </LinearLayout>
- </LinearLayout>
|