<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/bg_color"
|
android:orientation="vertical">
|
|
<com.dayu.pipirrapp.view.TitleBar
|
android:id="@+id/title"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:layout_alignParentTop="true"
|
app:centerText="修改密码" />
|
|
|
<EditText
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/item_height"
|
android:background="@color/white"
|
android:hint="请输入旧密码"
|
android:paddingLeft="20dp"
|
android:paddingRight="20dp" />
|
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textColor="@color/grey"
|
|
/>
|
|
<EditText
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/item_height"
|
android:background="@color/white"
|
android:hint="请输入新密码"
|
android:paddingLeft="20dp"
|
android:paddingRight="20dp" />
|
|
<EditText
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/item_height"
|
android:layout_marginTop="1dp"
|
android:background="@color/white"
|
android:hint="再次输入新密码"
|
android:paddingLeft="20dp"
|
android:paddingRight="20dp" />
|
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/item_height"
|
android:background="@drawable/ic_blue_background"
|
android:gravity="center"
|
android:layout_marginRight="40dp"
|
android:layout_marginLeft="40dp"
|
android:layout_marginTop="100dp"
|
android:text="修 改"
|
android:textColor="@color/white"
|
android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
|
</LinearLayout>
|