| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:background="@color/bg_gray">
- <include
- layout="@layout/title"/>
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:scrollbars="none">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <android.support.constraint.ConstraintLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
- 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"
- 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="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"
- 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="0.5dp"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/weixin_name_tv"
- android:background="@color/white_bg_line"
- 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"
- android:visibility="gone"/>
- <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"
- android:visibility="gone"/>
- <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"
- android:visibility="gone"/>
- <TextView
- android:id="@+id/withdrawal_click_bindname_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="可提现金额20元"
- 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"
- android:visibility="visible"/>
- <com.sheep.gamegroup.util.MyGridview
- 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="visible"
- android:background="@color/white"
- android:listSelector="@color/transparent"/>
- </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/selector_button_full_main"/>
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
|