| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".ui.My.change.ChangeNameActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_information_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:title="修改姓名" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="57.6dp"
- android:layout_marginLeft="9.6dp"
- android:layout_marginTop="11.6dp"
- android:layout_marginRight="9.6dp"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="11.8dp"
- android:src="@mipmap/iv_information_name" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="@string/personal_data_name"
- android:textSize="15.3sp" />
- <EditText
- android:id="@+id/information_et_name"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="50.5dp"
- android:layout_weight="1"
- android:background="@null"
- android:hint="@string/personal_data_name_hint"
- android:maxLength="10"
- android:maxLines="1"
- android:textSize="15.3sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="57.6dp"
- android:layout_marginLeft="9.6dp"
- android:layout_marginTop="11.6dp"
- android:layout_marginRight="9.6dp"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="11.8dp"
- android:src="@mipmap/iv_code_icon" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="@string/login_code"
- android:textSize="15.3sp" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <EditText
- android:id="@+id/information_et_code"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="35dp"
- android:layout_weight="1"
- android:background="@null"
- android:hint="@string/common_code_input_hint"
- android:inputType="phone"
- android:maxLength="6"
- android:maxLines="1"
- android:textSize="15.3sp" />
- <View
- style="@style/VerticalLineStyle"
- android:layout_marginTop="@dimen/space_20"
- android:layout_marginBottom="@dimen/space_20" />
- <com.hjq.widget.CountdownView
- android:id="@+id/cv_password_forget_countdown"
- style="@style/CountdownViewStyle" />
- </LinearLayout>
- </LinearLayout>
- <Button
- android:id="@+id/forget_btn_login"
- android:layout_width="282dp"
- android:layout_height="48dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="38.5dp"
- android:background="@drawable/selector_button"
- android:text="@string/personal_data_reset"
- android:textColor="@color/white"
- android:textSize="15.3sp" />
- </LinearLayout>
|