123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_66000000">
- <RelativeLayout
- android:layout_width="328dp"
- android:layout_height="280dp"
- android:layout_centerInParent="true"
- android:background="@color/color_ffffffff">
- <Button
- android:id="@+id/btn_left_cancel"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:layout_alignParentRight="true"
- android:layout_marginRight="7dp"
- android:layout_marginTop="7dp"
- android:background="@drawable/hisense_realname_close" />
- <TextView
- android:id="@+id/tv_real_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="10dp"
- android:text="@string/real_name"
- android:textColor="@color/color_343434"
- android:textSize="16dp"
- android:textStyle="bold" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true">
- <View
- android:id="@+id/view_first"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:background="@color/color_ffe6e6e6" />
- <EditText
- android:id="@+id/edt_real_name"
- style="@style/hisense_edt_login"
- android:layout_width="match_parent"
- android:layout_height="32dp"
- android:layout_below="@+id/view_first"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:gravity="center_vertical"
- android:hint="@string/input_real_name"
- android:inputType="text"
- android:maxLength="100" />
- <View
- android:id="@+id/view_second"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_below="@+id/view_first"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:layout_marginTop="32dp"
- android:background="@color/color_ffe6e6e6" />
- <EditText
- android:id="@+id/edt_id_num"
- style="@style/hisense_edt_login"
- android:layout_width="match_parent"
- android:layout_height="32dp"
- android:layout_below="@+id/view_second"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:gravity="center_vertical"
- android:hint="@string/input_id_tip"
- android:inputType="text" />
- <View
- android:id="@+id/view_third"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_below="@+id/view_second"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:layout_marginTop="32dp"
- android:background="@color/color_ffe6e6e6" />
- <LinearLayout
- android:id="@+id/btn_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/view_third"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:layout_marginTop="16dp"
- android:orientation="horizontal">
- <Button
- android:id="@+id/btn_right_ok"
- style="@style/hisense_btn_login"
- android:layout_width="match_parent"
- android:layout_height="32dp"
- android:text="@string/btn_sure" />
- </LinearLayout>
- <TextView
- android:id="@+id/tv_real_name_hint"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/btn_layout"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="5dp"
- android:layout_marginRight="5dp"
- android:layout_marginTop="16dp"
- android:gravity="center"
- android:textColor="@color/color_343434"
- android:textSize="10dp" />
- </RelativeLayout>
- </RelativeLayout>
- </RelativeLayout>
|