1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/pay_icon"
- android:layout_width="@dimen/dimen_150"
- android:layout_height="@dimen/dimen_150"
- android:layout_gravity="center_vertical"
- android:layout_marginRight="@dimen/dimen_48"
- android:background="@drawable/hisense_alipay" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="@dimen/dimen_192"
- android:layout_gravity="center_vertical"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/pay_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/dimen_36"
- android:textColor="#343434"
- android:textSize="@dimen/dimen_48" />
- <TextView
- android:id="@+id/pay_desc"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="7dp"
- android:textColor="#a9a9a9"
- android:textSize="@dimen/dimen_36" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginRight="@dimen/dimen_36"
- android:gravity="center|right"
- android:orientation="vertical" >
- <ImageView
- android:id="@+id/arrow_right"
- android:layout_width="@dimen/dimen_66"
- android:layout_height="@dimen/dimen_66"
- android:src="@drawable/hisense_arrow_right" />
- </LinearLayout>
- </LinearLayout>
|