1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="@dimen/dp_10"
- android:layout_marginBottom="@dimen/dp_10"
- android:layout_marginLeft="@dimen/dp_20"
- android:layout_marginRight="@dimen/dp_20">
- <TextView
- android:id="@+id/ej_cert_title_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/ej_text_real_name"
- android:textColor="@color/ej_font_black"
- android:textAppearance="@style/TextAppearance.AppCompat.Title"
- android:gravity="center" />
- <TextView
- android:id="@+id/ej_cert_msg_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/ej_msg_real_name"
- android:textColor="@color/ej_font_black"
- android:textSize="@dimen/sp_12"
- android:layout_marginTop="@dimen/dp_10"
- android:gravity="start"/>
- <EditText
- android:id="@+id/ej_cert_name_et"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/ej_shape_edit_box_fillet"
- android:layout_marginTop="@dimen/dp_10"
- android:textSize="@dimen/sp_14"
- android:textColor="@color/ej_font_black"
- android:hint="@string/ej_hint_name"
- android:textColorHint="@color/ej_font_gray"
- android:padding="@dimen/dp_8"
- android:gravity="center_vertical"/>
- <EditText
- android:id="@+id/ej_cert_id_number_et"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/ej_shape_edit_box_fillet"
- android:layout_marginTop="@dimen/dp_10"
- android:layout_marginBottom="@dimen/dp_10"
- android:textSize="@dimen/sp_14"
- android:textColor="@color/ej_font_black"
- android:hint="@string/ej_hint_id_number"
- android:textColorHint="@color/ej_font_gray"
- android:padding="@dimen/dp_8"
- android:gravity="center_vertical"
- android:inputType="number"
- android:digits="@string/ej_filter_code"
- android:maxLength="18"/>
- <Button
- android:id="@+id/ej_cert_submit_btn"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/ej_selector_btn_green"
- android:text="@string/ej_text_submit"
- android:textColor="@color/ej_font_white"
- android:textSize="@dimen/sp_16"/>
- </LinearLayout>
|