123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- style="@style/fullToolbarStyle"/>
- <GridLayout
- android:id="@+id/recharge_grid"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:columnCount="3"
- android:padding="15dp">
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_columnWeight="1"
- android:background="@drawable/ico_recharge_unchecked"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="20元"
- android:textAlignment="center"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="20说币"
- android:textAlignment="center" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_columnWeight="1"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/ico_recharge_unchecked"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="30元"
- android:textAlignment="center"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="30说币"
- android:textAlignment="center" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_columnWeight="1"
- android:background="@drawable/ico_recharge_unchecked"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="50元"
- android:textAlignment="center"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="50说币"
- android:textAlignment="center" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_columnWeight="1"
- android:layout_marginTop="10dp"
- android:background="@drawable/ico_recharge_unchecked"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="100元"
- android:textAlignment="center"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="100说币"
- android:textAlignment="center" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_columnWeight="1"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginTop="10dp"
- android:background="@drawable/ico_recharge_unchecked"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="200元"
- android:textAlignment="center"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="200说币"
- android:textAlignment="center" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_columnWeight="1"
- android:layout_marginTop="10dp"
- android:background="@drawable/ico_recharge_unchecked"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="300元"
- android:textAlignment="center"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="300说币"
- android:textAlignment="center" />
- </LinearLayout>
- </GridLayout>
- <Button
- android:id="@+id/trade_recharge_btn"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="16dp"
- android:background="@drawable/btn1_selector"
- android:text="立刻充值"
- android:textColor="@color/GreyWhite" />
- </LinearLayout>
|