<?xml version="1.0" encoding="utf-8"?>
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:scrollbars="none" >
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="#FEFFFF"
|
android:paddingBottom="50dp" >
|
|
<TextView
|
android:id="@+id/textView1"
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:gravity="center"
|
android:textColor="#DECCAC"
|
android:singleLine="true"
|
android:text="@string/txt_mobilefind"
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
<RelativeLayout
|
android:id="@+id/relativeLayout2"
|
android:layout_width="match_parent"
|
android:layout_marginLeft="16dp"
|
android:layout_marginRight="16dp"
|
android:layout_height="45dp"
|
android:layout_below="@+id/textView1"
|
android:background="@drawable/sp_findpwd_et" >
|
|
<EditText
|
android:id="@+id/et_mobilefindpwd_username"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginLeft="10dp"
|
android:background="@null"
|
android:hint="@string/txt_account" >
|
</EditText>
|
</RelativeLayout>
|
|
|
<RelativeLayout
|
android:id="@+id/relativeLayout4"
|
android:layout_width="wrap_content"
|
android:layout_height="45dp"
|
android:layout_alignParentLeft="true"
|
android:layout_below="@+id/relativeLayout2"
|
android:layout_marginLeft="16dp"
|
android:layout_marginRight="120dp"
|
android:layout_marginTop="16dp"
|
android:background="@drawable/sp_findpwd_et" >
|
|
<EditText
|
android:id="@+id/et_mobilefindpwd_validatacode"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginLeft="10dp"
|
android:background="@null"
|
android:hint="@string/edt_validate" >
|
</EditText>
|
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
android:id="@+id/relativeLayout5"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:layout_alignParentLeft="true"
|
android:layout_below="@+id/relativeLayout4"
|
android:layout_marginLeft="16dp"
|
android:layout_marginRight="16dp"
|
android:layout_marginTop="16dp"
|
android:background="@drawable/sp_findpwd_et" >
|
|
<EditText
|
android:id="@+id/et_mobilefindpwd_newpwd"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginLeft="10dp"
|
android:background="@null"
|
android:singleLine="true"
|
android:hint="@string/edt_newpassword" >
|
</EditText>
|
</RelativeLayout>
|
|
|
<Button
|
android:id="@+id/btn_mobilefindpwd_submit"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:layout_alignParentLeft="true"
|
android:layout_marginLeft="16dp"
|
android:layout_marginRight="16dp"
|
android:layout_below="@+id/relativeLayout5"
|
android:layout_marginTop="20dp"
|
android:background="@drawable/sp_post"
|
android:text="@string/btn_submit"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textColor="#FFFFFF" />
|
|
<Button
|
android:id="@+id/btn_mobilefindpwd_validatecode"
|
android:layout_width="100dp"
|
android:layout_height="45dp"
|
android:layout_alignRight="@+id/relativeLayout2"
|
android:layout_alignTop="@+id/relativeLayout4"
|
android:background="@drawable/sp_get_code"
|
android:paddingLeft="5dp"
|
android:paddingRight="5dp"
|
android:text="@string/btn_validatecode"
|
android:textColor="#FFFFFF"
|
android:textSize="15dp" />
|
|
<TextView
|
android:id="@+id/cs_service"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignLeft="@+id/btn_mobilefindpwd_submit"
|
android:layout_below="@+id/btn_mobilefindpwd_submit"
|
android:layout_marginTop="18dp"
|
android:clickable="true"
|
android:text="@string/cs_service"
|
android:textColor="#EA8367"
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
</RelativeLayout>
|
|
</ScrollView>
|