123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/default_bg">
- <include layout="@layout/view_title"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="@dimen/default_content_margin"
- android:textColor="@color/color_666"
- android:text="请输入您需要绑定的新手机号"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="@dimen/default_content_margin"
- android:background="@color/white">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/company_16sp"
- android:textColor="@color/color_333"
- android:text="国家和地区"/>
- <TextView
- android:id="@+id/edit_username"
- android:layout_width="wrap_content"
- android:layout_height="20dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:textColor="@color/color_333"
- android:text="中国大陆86"/>
- </RelativeLayout>
- <include layout="@layout/view_default_line"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="@dimen/default_content_margin"
- android:background="@color/white"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/company_16sp"
- android:textColor="@color/color_333"
- android:text="新手机号"/>
- <EditText
- android:id="@+id/edit_phone_number"
- android:layout_width="wrap_content"
- android:layout_height="20dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="@dimen/company_10dp"
- android:background="@null"
- android:inputType="phone"
- android:textSize="@dimen/company_16sp"
- android:hint="请输入身份证号"/>
- </LinearLayout>
- <TextView
- android:id="@+id/tv_hint"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/company_12sp"
- android:padding="@dimen/company_10dp"
- android:textColor="@color/color_999"/>
- <Button
- android:id="@+id/btn_next"
- android:layout_width="match_parent"
- android:layout_height="@dimen/company_50dp"
- android:layout_marginTop="@dimen/company_20dp"
- android:layout_marginLeft="@dimen/default_content_margin"
- android:layout_marginRight="@dimen/default_content_margin"
- android:background="@drawable/shape_default_btn_bg"
- android:textColor="@color/white"
- android:textSize="@dimen/company_16sp"
- android:text="下一步"/>
- </LinearLayout>
|