Files
HouseProperty/app/src/main/res/layout/activity_modify_pswd.xml
2020-08-03 09:11:54 +08:00

208 lines
9.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".RegisterActivity">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:background="@color/f7"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:gravity="center_vertical"
android:layout_marginTop="10dip"
android:visibility="gone"
android:background="@color/white"
android:layout_height="50dip">
<ImageView
android:layout_width="wrap_content"
android:src="@mipmap/id"
android:layout_marginLeft="30dip"
android:layout_height="wrap_content" />
<EditText
android:layout_width="match_parent"
android:hint="@string/registerphone"
android:id="@+id/registerphone"
android:textSize="@dimen/textedit"
android:inputType="phone"
android:gravity="left"
android:background="@null"
android:layout_margin="30dip"
android:layout_height="wrap_content" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="16dip"/>
<RelativeLayout
android:layout_marginTop="24dip"
android:layout_width="match_parent"
android:gravity="center"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:background="@color/white"
android:layout_height="50dip">
<ImageView
android:layout_width="wrap_content"
android:src="@mipmap/mima"
android:layout_marginStart="16dip"
android:layout_centerVertical="true"
android:id="@+id/yanzhenglogo"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/logincode"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_marginLeft="8dp"
android:layout_toRightOf="@+id/yanzhenglogo"
android:background="@null"
android:gravity="left|center_vertical"
android:maxLength="20"
android:singleLine="true"
android:digits="@string/me_password_digits"
android:hint="@string/me_input_old_password_tip"
android:inputType="textPassword"
android:textSize="17sp" />
<TextView
android:layout_width="wrap_content"
android:id="@+id/getcode"
android:layout_marginTop="5dip"
android:textSize="18sp"
android:layout_marginBottom="5dip"
android:textColor="@color/lightlittleGrey"
android:layout_marginRight="20dip"
android:layout_centerVertical="true"
android:gravity="center"
android:layout_alignParentRight="true"
android:layout_height="match_parent" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="16dip"/>
<LinearLayout
android:layout_width="match_parent"
android:gravity="center_vertical"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:background="@color/white"
android:layout_height="50dip">
<ImageView
android:layout_width="wrap_content"
android:src="@mipmap/mima"
android:layout_marginStart="16dip"
android:layout_height="wrap_content" />
<EditText
android:layout_width="match_parent"
android:hint="@string/me_input_new_password_again_hide"
android:inputType="textPassword"
android:textSize="17sp"
android:gravity="left|center_vertical"
android:id="@+id/editpaw"
android:layout_marginLeft="8dp"
android:singleLine="true"
android:background="@null"
android:maxLength="20"
android:digits="@string/me_password_digits"
android:layout_height="match_parent" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="16dip"/>
<LinearLayout
android:layout_width="match_parent"
android:gravity="center_vertical"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:background="@color/white"
android:layout_height="50dip">
<ImageView
android:layout_width="wrap_content"
android:src="@mipmap/mima"
android:layout_marginStart="16dip"
android:layout_height="wrap_content" />
<EditText
android:layout_width="match_parent"
android:hint="@string/me_input_new_password_again_tip"
android:inputType="textPassword"
android:textSize="17sp"
android:singleLine="true"
android:id="@+id/editpawAGAIN"
android:background="@null"
android:maxLength="20"
android:gravity="left|center_vertical"
android:digits="@string/me_password_digits"
android:layout_marginLeft="8dp"
android:layout_height="match_parent" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:gravity="center_vertical"
android:visibility="gone"
android:background="@color/white"
android:layout_height="50dip">
<ImageView
android:layout_width="wrap_content"
android:src="@mipmap/boy1"
android:layout_marginLeft="30dip"
android:layout_height="wrap_content" />
<RadioGroup
android:orientation="horizontal"
android:id="@+id/femaleradioGROUP"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:layout_width="50dip"
android:text="男"
android:id="@+id/male"
android:layout_marginLeft="50dip"
android:button="@null"
android:checked="false"
android:padding="5dip"
android:gravity="center"
android:textColor="@color/radiotext"
android:background="@drawable/femalra"
android:layout_height="wrap_content" />
<RadioButton
android:layout_width="50dip"
android:text="女"
android:button="@null"
android:id="@+id/female"
android:layout_marginLeft="50dip"
android:padding="5dip"
android:gravity="center"
android:textColor="@color/radiotext"
android:background="@drawable/femalra"
android:checked="true"
android:layout_height="wrap_content" />
</RadioGroup>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:text="修改密码"
android:layout_marginLeft="8dip"
android:textColor="@color/white"
android:textSize="18sp"
android:gravity="center"
android:id="@+id/register"
android:layout_marginTop="40dip"
android:layout_marginRight="8dip"
android:background="@drawable/selector_common_btn"
android:padding="10dip"
android:layout_height="45dp" />
</LinearLayout></LinearLayout>
</layout>