12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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:layout_gravity="center"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:background="@drawable/qs_login_container_white_bg"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/qs_y07_iv_return"
- android:layout_width="10dp"
- android:layout_height="15dp"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="10dp"
- android:src="@drawable/qs_y07_return_img" />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:src="@drawable/qs_y07_register_title" />
- <cn.qingshi.gamesdk.core.ui.EventEditText
- android:id="@+id/qs_y07_eet_account"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="20dp" />
- <cn.qingshi.gamesdk.core.ui.EventEditText
- android:id="@+id/qs_y07_eet_pwd"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="20dp" />
- <Button
- android:id="@+id/qs_y07_btn_register"
- style="?android:attr/borderlessButtonStyle"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginBottom="20dp"
- android:background="@drawable/qs_y07_btn_blue_bg"
- android:text="注册"
- android:textAllCaps="false"
- android:textColor="@color/qs_login_white"
- android:textSize="16sp" />
- </LinearLayout>
|