fragment_keypad_test.xml
2.21 KB
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/votebakground">
<ImageButton
android:id="@+id/keypad_test_btnback"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/content_margin"
android:layout_marginTop="@dimen/content_margin"
android:background="@drawable/back_selector"
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="@dimen/content_margin"
android:text="@string/keypad_test"
android:textSize="@dimen/big_text_p2"
android:textStyle="bold" />
<TextView
android:id="@+id/keypad_test_keypad_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/keypad_test_title"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/content_margin"
android:text="@string/keypad_id"
android:textSize="@dimen/big_text_p1"
android:textStyle="bold" />
<TextView
android:id="@+id/keypad_test_keypad_sn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/keypad_test_keypad_id"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/content_margin"
android:text="SN"
android:textSize="@dimen/big_text_p2"
android:visibility="invisible" />
<TextView
android:id="@+id/keypad_test_keypad_ver"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/keypad_test_keypad_sn"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/content_margin"
android:text="@string/version"
android:textSize="@dimen/big_text_p2" />
</RelativeLayout>