123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/main_color"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/DIMEN_45DP"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingStart="@dimen/DIMEN_19DP"
- android:paddingEnd="@dimen/DIMEN_15DP">
- <TextView
- android:id="@+id/tv_bind_phone_back"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_centerVertical="true"
- android:drawableStart="@drawable/bssdk_left_arrow"
- android:drawablePadding="@dimen/DIMEN_5DP"
- android:gravity="center"
- android:text="返回"
- android:textColor="@color/indicator_color" />
- <TextView
- android:id="@+id/tv_tittle_bind_phone"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:text="绑定手机号"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_15SP" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/DIMEN_1DP"
- android:background="@color/line_bg171d3c" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="vertical"
- android:paddingStart="@dimen/DIMEN_19DP"
- android:paddingEnd="@dimen/DIMEN_10DP">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/DIMEN_10DP"
- android:layout_marginEnd="@dimen/DIMEN_10DP"
- android:text="手机号"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <EditText
- android:id="@+id/et_bind_phone_phone"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="@null"
- android:gravity="center_vertical|start"
- android:hint="请输入手机号"
- android:inputType="phone"
- android:paddingTop="@dimen/DIMEN_10DP"
- android:paddingBottom="@dimen/DIMEN_10DP"
- android:text=""
- android:textColor="@color/white"
- android:textColorHint="@color/alpha_50_white"
- android:textCursorDrawable="@drawable/bssdk_text_cursor_drawable"
- android:textSize="@dimen/TEXT_SIZE_10SP" />
- <Button
- android:id="@+id/btn_bind_phone_auth_code"
- android:layout_width="@dimen/DIMEN_80DP"
- android:layout_height="@dimen/DIMEN_24DP"
- android:background="@drawable/bssdk_btn_login_bg"
- android:enabled="false"
- android:text="获取验证码"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP" />
- </LinearLayout>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginStart="@dimen/DIMEN_19DP"
- android:background="@color/line_bg171d3c" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="vertical"
- android:paddingStart="@dimen/DIMEN_19DP"
- android:paddingEnd="@dimen/DIMEN_10DP">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/DIMEN_10DP"
- android:layout_marginEnd="@dimen/DIMEN_10DP"
- android:text="验证码"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP" />
- <EditText
- android:id="@+id/et_bind_phone_code"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@null"
- android:gravity="center_vertical|start"
- android:hint="请输入验证码"
- android:paddingTop="@dimen/DIMEN_10DP"
- android:paddingBottom="@dimen/DIMEN_10DP"
- android:text=""
- android:textColor="@color/white"
- android:textColorHint="@color/alpha_50_white"
- android:textCursorDrawable="@drawable/bssdk_text_cursor_drawable"
- android:textSize="@dimen/TEXT_SIZE_10SP" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginStart="@dimen/DIMEN_19DP"
- android:background="@color/line_bg171d3c" />
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginStart="@dimen/DIMEN_19DP"
- android:background="@color/line_bg171d3c" />
- <Button
- android:id="@+id/btn_bind_phone_confirm"
- android:layout_width="match_parent"
- android:layout_height="@dimen/DIMEN_40DP"
- android:layout_marginLeft="@dimen/DIMEN_20DP"
- android:layout_marginTop="@dimen/DIMEN_35DP"
- android:layout_marginRight="@dimen/DIMEN_20DP"
- android:background="@drawable/bssdk_btn_login_bg"
- android:enabled="false"
- android:text="确认"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_14SP" />
- </LinearLayout>
|