|
|
@@ -5,36 +5,120 @@
|
|
|
android:layout_height="match_parent"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:orientation="vertical"
|
|
|
- android:background="@color/bg_gray"
|
|
|
- android:padding="@dimen/content_padding_15">
|
|
|
+ android:background="@color/bg_gray">
|
|
|
+ <include
|
|
|
+ layout="@layout/title"/>
|
|
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:background="@drawable/sp_rectangle_bg_white_radius"
|
|
|
- android:padding="@dimen/content_padding_20">
|
|
|
+ android:padding="@dimen/content_padding_20"
|
|
|
+ android:layout_margin="@dimen/content_padding_15">
|
|
|
<TextView
|
|
|
android:id="@+id/withdrawal_wx_pre_notice_tv"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:text="当前的提现绑定微信号为"
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
- app:layout_constraintLeft_toLeftOf="parent"/>
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ android:textColor="@color/txt_gray_929292"
|
|
|
+ android:textSize="@dimen/text_size_12" />
|
|
|
<TextView
|
|
|
android:id="@+id/weixin_name_tv"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:text="微信帐号"
|
|
|
- app:layout_constraintTop_toBottomOf="@id/withdrawal_wx_pre_notice_tv"
|
|
|
- app:layout_constraintLeft_toLeftOf="@id/withdrawal_wx_pre_notice_tv"
|
|
|
- android:layout_marginLeft="17dp"
|
|
|
- android:layout_marginTop="6dp" />
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/withdrawal_wx_pre_notice_tv"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@+id/withdrawal_wx_pre_notice_tv"
|
|
|
+ android:layout_marginLeft="36dp"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:textSize="@dimen/text_size_3"
|
|
|
+ android:textColor="@color/txt_black_404040"
|
|
|
+ android:layout_marginStart="36dp"/>
|
|
|
<TextView
|
|
|
+ android:id="@+id/withdrawal_change_tv"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:text="更换"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/withdrawal_wx_pre_notice_tv"
|
|
|
app:layout_constraintStart_toEndOf="@id/weixin_name_tv"
|
|
|
- app:layout_constraintLeft_toLeftOf="@id/weixin_name_tv"/>
|
|
|
+ app:layout_constraintLeft_toLeftOf="@+id/weixin_name_tv"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:textSize="@dimen/text_size_12"
|
|
|
+ android:textColor="@color/txt_bule"
|
|
|
+ android:layout_marginStart="17dp"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/line_one"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/weixin_name_tv"
|
|
|
+ android:background="@color/txt_gray_929292"
|
|
|
+ android:layout_marginTop="17dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/withdrawal_wx_bank_notice_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="微信绑定银行卡的姓名"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ android:textColor="@color/txt_gray_929292"
|
|
|
+ android:textSize="@dimen/text_size_12"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/line_one"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_20"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/withdrawal_real_name_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:hint="请输入真实姓名"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/withdrawal_wx_bank_notice_tv"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:textSize="@dimen/text_size_3"
|
|
|
+ android:textColor="@color/txt_black_404040"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/line_two"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/withdrawal_real_name_tv"
|
|
|
+ android:background="@color/txt_gray_929292"
|
|
|
+ android:layout_marginTop="17dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/withdrawal_click_bindname_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="点我进行实名认证,以后提现都不用验证啦!"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ android:textColor="@color/txt_gray_929292"
|
|
|
+ android:textSize="@dimen/text_size_12"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/line_two"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_20"/>
|
|
|
+ <GridView
|
|
|
+ android:id="@+id/withdrawal_greidview"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/withdrawal_click_bindname_tv"
|
|
|
+ tools:layout_editor_absoluteX="8dp"
|
|
|
+ android:scrollbars="none"
|
|
|
+ android:numColumns="3"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_20"
|
|
|
+ android:visibility="gone"/>
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/withdrawal_sure"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ style="@style/txt_big_btn_style"
|
|
|
+ android:text="确 定"
|
|
|
+ android:background="@drawable/sp_bg_gradient_rectqangle_yellow"/>
|
|
|
|
|
|
</LinearLayout>
|