| <?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="270dp" | 
|     android:background="@drawable/llsdk_bg_nor" | 
|     android:orientation="vertical"> | 
|   | 
|     <include | 
|         android:id="@+id/ll_title" | 
|         layout="@layout/llsdk_include_title" /> | 
|   | 
|     <ScrollView | 
|         android:layout_width="match_parent" | 
|         android:layout_height="match_parent" | 
|         android:layout_below="@id/ll_title" | 
|         android:layout_marginBottom="5dp" | 
|         android:scrollbars="none"> | 
|   | 
|         <LinearLayout | 
|             android:layout_width="match_parent" | 
|             android:layout_height="wrap_content" | 
|             android:orientation="vertical" | 
|             android:paddingLeft="15dp" | 
|             android:paddingRight="15dp"> | 
|   | 
|             <TextView | 
|                 android:layout_width="match_parent" | 
|                 android:layout_height="wrap_content" | 
|                 android:layout_marginTop="10dp" | 
|                 android:gravity="center" | 
|                 android:lineSpacingExtra="2dp" | 
|                 android:text="@string/llsdk_auth_tip" | 
|                 android:textColor="@color/llsdk_color_gary" | 
|                 android:textSize="10sp" /> | 
|   | 
|             <EditText | 
|                 android:id="@+id/ll_name_et" | 
|                 style="@style/llsdk_edit_et" | 
|                 android:layout_marginTop="15dp" | 
|                 android:background="@drawable/llsdk_shape_gray_input" | 
|                 android:hint="@string/llsdk_realname2" | 
|                 android:inputType="text" | 
|                 android:tag="4" /> | 
|   | 
|             <EditText | 
|                 android:id="@+id/ll_id_number_et" | 
|                 style="@style/llsdk_edit_et" | 
|                 android:layout_marginTop="6dp" | 
|                 android:background="@drawable/llsdk_shape_gray_input" | 
|                 android:hint="@string/llsdk_idcard" | 
|                 android:inputType="number" | 
|                 android:tag="5" /> | 
|   | 
|             <Button | 
|                 android:id="@+id/ll_submit_btn" | 
|                 style="@style/llsdk_btn" | 
|                 android:layout_gravity="center_horizontal" | 
|                 android:layout_marginTop="12dp" | 
|                 android:background="@drawable/llsdk_selector_btn" | 
|                 android:text="确认实名" /> | 
|   | 
|         </LinearLayout> | 
|     </ScrollView> | 
| </RelativeLayout> |