|
@@ -2,6 +2,7 @@
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
|
|
+ android:background="@color/background_light_gray"
|
|
|
android:gravity="center_horizontal"
|
|
android:gravity="center_horizontal"
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
@@ -13,10 +14,20 @@
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
+ android:paddingBottom="@dimen/content_padding_big"
|
|
|
android:paddingLeft="15dp"
|
|
android:paddingLeft="15dp"
|
|
|
- android:text="余 额:25.5"
|
|
|
|
|
- android:textColor="@color/sheep_red"
|
|
|
|
|
- android:textSize="14sp"/>
|
|
|
|
|
|
|
+ android:paddingTop="@dimen/content_padding_big"
|
|
|
|
|
+ android:text="账户余额:¥250"
|
|
|
|
|
+ android:textColor="@color/orange_text_light"
|
|
|
|
|
+ android:textSize="@dimen/text_size_7"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/content_padding"
|
|
|
|
|
+ android:layout_marginTop="@dimen/content_padding_big"
|
|
|
|
|
+ android:text="请选择提现金额"
|
|
|
|
|
+ android:textColor="@color/black_text_gray"/>
|
|
|
|
|
|
|
|
<GridView
|
|
<GridView
|
|
|
android:id="@+id/gv_money"
|
|
android:id="@+id/gv_money"
|
|
@@ -27,20 +38,22 @@
|
|
|
|
|
|
|
|
</GridView>
|
|
</GridView>
|
|
|
|
|
|
|
|
- <include
|
|
|
|
|
- layout="@layout/line_h_1px"/>
|
|
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
|
+ android:layout_weight="1"/>
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
android:id="@+id/tv_wx"
|
|
android:id="@+id/tv_wx"
|
|
|
- android:layout_width="200dp"
|
|
|
|
|
|
|
+ style="@style/style_btn"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="35dp"
|
|
android:layout_height="35dp"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
|
|
- android:layout_marginTop="15dp"
|
|
|
|
|
- android:background="@drawable/text_backgroud"
|
|
|
|
|
|
|
+ android:layout_marginLeft="@dimen/content_padding_big"
|
|
|
|
|
+ android:layout_marginRight="@dimen/content_padding_big"
|
|
|
|
|
+ android:layout_marginBottom="@dimen/content_padding"
|
|
|
android:gravity="center"
|
|
android:gravity="center"
|
|
|
android:text="提现到微信"
|
|
android:text="提现到微信"
|
|
|
- android:textColor="@drawable/text_color"
|
|
|
|
|
- android:textSize="16sp"/>
|
|
|
|
|
|
|
+ android:textSize="@dimen/text_size_2"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|