<?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="#FFFFFF" >
|
|
<RelativeLayout
|
android:id="@+id/relativeLayout1"
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:layout_alignParentLeft="true"
|
android:layout_alignParentTop="true"
|
android:background="@color/qr_color_fac000" >
|
|
<ImageView
|
android:id="@+id/img_findpwd_back"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:scaleType="center"
|
android:background="@mipmap/cs_white_back" />
|
|
<TextView
|
android:id="@+id/textView1"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:text="找回密码"
|
android:textColor="#FFFFFF"
|
android:textSize="18dp"/>
|
</RelativeLayout>
|
|
<RadioGroup
|
android:id="@+id/cs_findpwd_rgroup"
|
android:layout_width="match_parent"
|
android:layout_height="80dp"
|
android:layout_alignParentLeft="true"
|
android:layout_below="@+id/relativeLayout1"
|
android:gravity="center_vertical"
|
android:orientation="horizontal" >
|
|
<RadioButton
|
android:id="@+id/cs_findpwd_mobilefindpwd"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:background="@drawable/sp_findpwd_color"
|
android:button="@null"
|
android:checked="true"
|
android:drawableTop="@drawable/sp_findpwd_icon"
|
android:gravity="center"
|
android:padding="5dp"
|
android:text="@string/txt_forget_phone"
|
android:textColor="@drawable/sp_findpwd_rbtn_textcolor_selector"/>
|
|
<RadioButton
|
android:id="@+id/cs_findpwd_questionfindpwd"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:padding="5dp"
|
android:drawableTop="@drawable/sp_question_icon"
|
android:background="@drawable/sp_findpwd_color"
|
android:button="@null"
|
android:gravity="center"
|
android:text="问题找回"
|
android:textColor="@drawable/sp_findpwd_rbtn_textcolor_selector" />
|
|
<RadioButton
|
android:id="@+id/cs_findpwd_accountfindpwd"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:padding="5dp"
|
android:visibility="gone"
|
android:drawableTop="@drawable/sp_email_icon"
|
android:background="@drawable/sp_findpwd_color"
|
android:button="@null"
|
android:gravity="center"
|
android:text="邮箱找回"
|
android:textColor="@drawable/sp_findpwd_rbtn_textcolor_selector" />
|
</RadioGroup>
|
|
<android.support.v4.view.ViewPager
|
android:id="@+id/cs_vpager"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/cs_findpwd_rgroup" />
|
|
</RelativeLayout>
|