Blame view
GameSDKRelease/res/layout/fragment_mol.xml
3.54 KB
f63824b88
![]() |
1 2 3 |
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" |
5b95cccaf
![]() |
4 5 |
android:layout_height="match_parent" android:background="@color/payment_common_bg" > |
f63824b88
![]() |
6 7 8 9 |
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" |
f63824b88
![]() |
10 11 12 |
android:orientation="vertical" > <TextView |
5b95cccaf
![]() |
13 |
android:layout_width="match_parent" |
f63824b88
![]() |
14 |
android:layout_height="wrap_content" |
5b95cccaf
![]() |
15 16 17 18 19 |
android:background="@drawable/header_tip_bg" android:gravity="center_vertical" android:paddingLeft="10dp" android:text="@string/card_input_tip" android:textColor="@color/black_text" /> |
f63824b88
![]() |
20 21 |
<LinearLayout |
5b95cccaf
![]() |
22 |
android:id="@+id/card_input_layout" |
f63824b88
![]() |
23 24 |
android:layout_width="match_parent" android:layout_height="wrap_content" |
5b95cccaf
![]() |
25 26 |
android:layout_marginLeft="13dp" android:layout_marginRight="13dp" |
f63824b88
![]() |
27 |
android:layout_marginTop="10dp" |
5b95cccaf
![]() |
28 |
android:orientation="vertical" > |
f63824b88
![]() |
29 30 |
<EditText |
5b95cccaf
![]() |
31 |
android:id="@+id/card_no" |
f63824b88
![]() |
32 33 |
android:layout_width="match_parent" android:layout_height="wrap_content" |
f63824b88
![]() |
34 |
android:background="@drawable/et_bg" |
5b95cccaf
![]() |
35 |
android:hint="@string/mol_card_hint" /> |
f63824b88
![]() |
36 |
|
5b95cccaf
![]() |
37 38 |
<EditText android:id="@+id/card_pwd" |
f63824b88
![]() |
39 40 |
android:layout_width="match_parent" android:layout_height="wrap_content" |
5b95cccaf
![]() |
41 42 43 |
android:layout_marginTop="13dp" android:background="@drawable/et_bg" android:hint="@string/mol_pass_hint" /> |
f63824b88
![]() |
44 |
</LinearLayout> |
5b95cccaf
![]() |
45 46 |
<Button android:id="@+id/start_pay" |
f63824b88
![]() |
47 48 |
android:layout_width="match_parent" android:layout_height="wrap_content" |
5b95cccaf
![]() |
49 50 51 52 53 54 55 |
android:layout_marginLeft="13dp" android:layout_marginRight="13dp" android:layout_marginTop="16dp" android:background="@drawable/btn_orange_bg" android:text="@string/pay_ok" android:textColor="@android:color/white" android:textSize="16sp" /> |
f63824b88
![]() |
56 |
|
5b95cccaf
![]() |
57 58 59 60 61 62 63 64 65 66 67 |
<Button android:id="@+id/wallet" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="15dp" android:layout_marginLeft="13dp" android:layout_marginRight="13dp" android:layout_marginTop="10dp" android:background="@drawable/btn_wallet_bg" android:text="@string/title_mol_wallet" android:textSize="15sp" /> |
f63824b88
![]() |
68 |
|
5b95cccaf
![]() |
69 70 71 72 73 74 75 76 77 78 |
<TextView android:id="@+id/summary_title" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="13dp" android:layout_marginRight="13dp" android:background="@color/summary_bg" android:paddingLeft="10dp" android:textColor="@color/black_text" android:textSize="12sp" /> |
f63824b88
![]() |
79 80 |
<TextView |
5b95cccaf
![]() |
81 |
android:id="@+id/summary" |
f63824b88
![]() |
82 83 |
android:layout_width="match_parent" android:layout_height="wrap_content" |
5b95cccaf
![]() |
84 85 86 87 88 89 90 |
android:layout_marginBottom="10dp" android:layout_marginLeft="13dp" android:layout_marginRight="13dp" android:background="@color/summary_bg" android:padding="10dp" android:textColor="@color/black_text" android:textSize="11sp" /> |
f63824b88
![]() |
91 92 93 |
</LinearLayout> </ScrollView> |