Blame view

app/src/main/res/layout/fragment_keypad_test.xml 2.1 KB
27983dbe   孙向锦   project init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:background="@color/votebakground"
      android:layout_width="match_parent"
      android:layout_height="match_parent" >
      
       <ImageButton 
           android:id="@+id/keypad_test_btnback"
           android:background="@drawable/back_selector"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_marginLeft="36px"
           android:layout_marginTop="48px"
           android:visibility="invisible"
           />
      
       
      <TextView 
          android:id="@+id/keypad_test_title"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerHorizontal="true"
          android:layout_marginTop="48px"
          android:textSize="50px"
          android:textStyle="bold"
          android:text="@string/keypad_test"
          />
      
     <TextView 
          android:id="@+id/keypad_test_keypad_id"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerHorizontal="true"
          android:layout_below="@id/keypad_test_title"
          android:layout_marginTop="68px"
          android:textSize="90px"
         android:textStyle="bold"
          android:text="@string/keypad_id"
          />
     
     <TextView 
          android:id="@+id/keypad_test_keypad_sn"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerHorizontal="true"
          android:layout_below="@id/keypad_test_keypad_id"
          android:layout_marginTop="48px"
          android:textSize="50px"
          android:text="SN"
          />
     
     <TextView 
          android:id="@+id/keypad_test_keypad_ver"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerHorizontal="true"
          android:layout_below="@id/keypad_test_keypad_sn"
          android:layout_marginTop="48px"
          android:textSize="50px"
          android:text="@string/version"
          />
     
     
  
  </RelativeLayout>