Blame view

GameSDKRelease/res/layout/fragment_mol.xml 3.54 KB
f63824b88   赵康   add project
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   赵康   version 2.0
4
5
      android:layout_height="match_parent"
      android:background="@color/payment_common_bg" >
f63824b88   赵康   add project
6
7
8
9
  
      <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
f63824b88   赵康   add project
10
11
12
          android:orientation="vertical" >
  
          <TextView
5b95cccaf   赵康   version 2.0
13
              android:layout_width="match_parent"
f63824b88   赵康   add project
14
              android:layout_height="wrap_content"
5b95cccaf   赵康   version 2.0
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   赵康   add project
20
21
  
          <LinearLayout
5b95cccaf   赵康   version 2.0
22
              android:id="@+id/card_input_layout"
f63824b88   赵康   add project
23
24
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
5b95cccaf   赵康   version 2.0
25
26
              android:layout_marginLeft="13dp"
              android:layout_marginRight="13dp"
f63824b88   赵康   add project
27
              android:layout_marginTop="10dp"
5b95cccaf   赵康   version 2.0
28
              android:orientation="vertical" >
f63824b88   赵康   add project
29
30
  
              <EditText
5b95cccaf   赵康   version 2.0
31
                  android:id="@+id/card_no"
f63824b88   赵康   add project
32
33
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
f63824b88   赵康   add project
34
                  android:background="@drawable/et_bg"
5b95cccaf   赵康   version 2.0
35
                  android:hint="@string/mol_card_hint" />
f63824b88   赵康   add project
36

5b95cccaf   赵康   version 2.0
37
38
              <EditText
                  android:id="@+id/card_pwd"
f63824b88   赵康   add project
39
40
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
5b95cccaf   赵康   version 2.0
41
42
43
                  android:layout_marginTop="13dp"
                  android:background="@drawable/et_bg"
                  android:hint="@string/mol_pass_hint" />
f63824b88   赵康   add project
44
          </LinearLayout>
5b95cccaf   赵康   version 2.0
45
46
          <Button
              android:id="@+id/start_pay"
f63824b88   赵康   add project
47
48
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
5b95cccaf   赵康   version 2.0
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   赵康   add project
56

5b95cccaf   赵康   version 2.0
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   赵康   add project
68

5b95cccaf   赵康   version 2.0
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   赵康   add project
79
80
  
          <TextView
5b95cccaf   赵康   version 2.0
81
              android:id="@+id/summary"
f63824b88   赵康   add project
82
83
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
5b95cccaf   赵康   version 2.0
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   赵康   add project
91
92
93
      </LinearLayout>
  
  </ScrollView>