|
@@ -6,94 +6,103 @@
|
|
|
|
|
|
|
|
<include
|
|
<include
|
|
|
layout="@layout/title"/>
|
|
layout="@layout/title"/>
|
|
|
-
|
|
|
|
|
- <ImageView
|
|
|
|
|
- android:id="@+id/phone_iv"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_gravity="center_horizontal"
|
|
|
|
|
- android:layout_marginLeft="100dp"
|
|
|
|
|
- android:layout_marginRight="100dp"
|
|
|
|
|
- android:src="@drawable/icon"
|
|
|
|
|
- android:layout_marginTop="35dp"
|
|
|
|
|
- android:layout_marginBottom="5dp"/>
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/phone_tip_tv"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:text="为了避免机器刷单,请绑定手机号后领取任务奖励"
|
|
|
|
|
- android:textColor="@color/black_444444"
|
|
|
|
|
- android:textSize="11dp"
|
|
|
|
|
- android:layout_gravity="center_horizontal"/>
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
|
|
+ <ScrollView
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
|
|
- android:layout_marginRight="12dp"
|
|
|
|
|
- android:layout_marginTop="40dp"
|
|
|
|
|
- android:background="@drawable/sp_rectangle_bg_white_radius"
|
|
|
|
|
- android:orientation="vertical">
|
|
|
|
|
- <android.support.v7.widget.AppCompatEditText
|
|
|
|
|
- android:id="@+id/phone_et_account"
|
|
|
|
|
- style="@style/edt_style"
|
|
|
|
|
- android:inputType="phone"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/edt_heigh_default"
|
|
|
|
|
- android:layout_centerVertical="true"
|
|
|
|
|
- android:layout_margin="@dimen/content_padding_small"
|
|
|
|
|
- android:hint="请输入要绑定的手机号"
|
|
|
|
|
- android:paddingLeft="@dimen/content_padding_big"
|
|
|
|
|
- android:maxLength="11"/>
|
|
|
|
|
-
|
|
|
|
|
|
|
+ android:scrollbars="none">
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
- android:id="@+id/ll_code"
|
|
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_margin="@dimen/content_padding_small"
|
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/phone_iv"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
|
|
+ android:layout_marginLeft="100dp"
|
|
|
|
|
+ android:layout_marginRight="100dp"
|
|
|
|
|
+ android:src="@drawable/icon"
|
|
|
|
|
+ android:layout_marginTop="35dp"
|
|
|
|
|
+ android:layout_marginBottom="5dp"/>
|
|
|
|
|
|
|
|
- <android.support.v7.widget.AppCompatEditText
|
|
|
|
|
- android:id="@+id/phone_et_code"
|
|
|
|
|
- style="@style/edt_style"
|
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
|
- android:layout_height="@dimen/edt_heigh_default"
|
|
|
|
|
- android:layout_weight="2"
|
|
|
|
|
- android:hint="请输入验证码"
|
|
|
|
|
- android:inputType="phone"
|
|
|
|
|
- android:paddingLeft="@dimen/content_padding_big"
|
|
|
|
|
- android:maxLength="6"
|
|
|
|
|
- android:textSize="@dimen/text_size_3"/>
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
- android:id="@+id/phone_btn_code"
|
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
|
|
|
+ android:id="@+id/phone_tip_tv"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center|center_vertical"
|
|
|
|
|
- android:layout_marginLeft="@dimen/content_padding"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:text="@string/get_captcha"
|
|
|
|
|
- android:textColor="@color/txt_bule"
|
|
|
|
|
- />
|
|
|
|
|
|
|
+ android:text="为了避免机器刷单,请绑定手机号后领取任务奖励"
|
|
|
|
|
+ android:textColor="@color/black_444444"
|
|
|
|
|
+ android:textSize="11dp"
|
|
|
|
|
+ android:layout_gravity="center_horizontal"/>
|
|
|
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
|
|
+ android:layout_marginTop="40dp"
|
|
|
|
|
+ android:background="@drawable/sp_rectangle_bg_white_radius"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+ <android.support.v7.widget.AppCompatEditText
|
|
|
|
|
+ android:id="@+id/phone_et_account"
|
|
|
|
|
+ style="@style/edt_style"
|
|
|
|
|
+ android:inputType="phone"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/edt_heigh_default"
|
|
|
|
|
+ android:layout_centerVertical="true"
|
|
|
|
|
+ android:layout_margin="@dimen/content_padding_small"
|
|
|
|
|
+ android:hint="请输入手机号"
|
|
|
|
|
+ android:paddingLeft="@dimen/content_padding_big"
|
|
|
|
|
+ android:maxLength="11"/>
|
|
|
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/ll_code"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="@dimen/content_padding_small"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ >
|
|
|
|
|
|
|
|
|
|
+ <android.support.v7.widget.AppCompatEditText
|
|
|
|
|
+ android:id="@+id/phone_et_code"
|
|
|
|
|
+ style="@style/edt_style"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="@dimen/edt_heigh_default"
|
|
|
|
|
+ android:layout_weight="2"
|
|
|
|
|
+ android:hint="请输入验证码"
|
|
|
|
|
+ android:inputType="phone"
|
|
|
|
|
+ android:paddingLeft="@dimen/content_padding_big"
|
|
|
|
|
+ android:maxLength="6"
|
|
|
|
|
+ android:textSize="@dimen/text_size_3"/>
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/phone_btn_code"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_gravity="center|center_vertical"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/content_padding"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:text="@string/get_captcha"
|
|
|
|
|
+ android:textColor="@color/txt_bule"
|
|
|
|
|
+ />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/phone_sure_tv"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="@dimen/layout_heigh_default"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
|
|
+ android:text="确 定"
|
|
|
|
|
+ style="@style/txt_big_btn_style"/>
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </ScrollView>
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/phone_sure_tv"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:minHeight="45dp"
|
|
|
|
|
- android:minWidth="225dp"
|
|
|
|
|
- android:layout_marginTop="@dimen/layout_heigh_default"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:layout_gravity="center_horizontal"
|
|
|
|
|
- android:text="确 定"
|
|
|
|
|
- style="@style/sure_btn_style"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|