| <?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" | 
|             android:paddingTop="6dp"> | 
|   | 
|             <EditText | 
|                 android:id="@+id/ll_username_et" | 
|                 style="@style/llsdk_edit_et" | 
|                 android:layout_height="40dp" | 
|                 android:background="@drawable/llsdk_shape_gray_input" | 
|                 android:hint="@string/llsdk_account" | 
|                 android:inputType="text" | 
|                 android:maxLength="16" | 
|                 android:tag="1" /> | 
|   | 
|             <EditText | 
|                 android:id="@+id/ll_password_et" | 
|                 style="@style/llsdk_edit_et" | 
|                 android:layout_height="40dp" | 
|                 android:layout_marginTop="5dp" | 
|                 android:background="@drawable/llsdk_shape_gray_input" | 
|                 android:hint="@string/llsdk_pwd" | 
|                 android:inputType="textPassword" | 
|                 android:maxLength="16" | 
|                 android:tag="2" /> | 
|   | 
|             <EditText | 
|                 android:id="@+id/ll_password_again_et" | 
|                 style="@style/llsdk_edit_et" | 
|                 android:layout_height="40dp" | 
|                 android:layout_marginTop="5dp" | 
|                 android:background="@drawable/llsdk_shape_gray_input" | 
|                 android:hint="@string/llsdk_confirm_pwd" | 
|                 android:inputType="textPassword" | 
|                 android:maxLength="16" | 
|                 android:tag="2" /> | 
|   | 
|             <TextView | 
|                 android:id="@+id/ll_terms_btn" | 
|                 android:layout_width="wrap_content" | 
|                 android:layout_height="wrap_content" | 
|                 android:layout_gravity="center" | 
|                 android:layout_marginBottom="2dp" | 
|                 android:layout_marginTop="2dp" | 
|                 android:gravity="center" | 
|                 android:paddingBottom="3dp" | 
|                 android:paddingTop="3dp" | 
|                 android:text="@string/llsdk_read_terms" | 
|                 android:textColor="#8f8f8f" | 
|                 android:textSize="13sp" /> | 
|   | 
|             <Button | 
|                 android:id="@+id/ll_register_btn" | 
|                 style="@style/llsdk_btn" | 
|                 android:layout_marginLeft="30dp" | 
|                 android:layout_marginRight="30dp" | 
|                 android:background="@drawable/llsdk_selector_btn" | 
|                 android:text="@string/llsdk_register" /> | 
|         </LinearLayout> | 
|     </ScrollView> | 
| </RelativeLayout> |