activity_set_finger_print.xml
4.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/whitecolor"
tools:context=".activities.sidemenu.SetFingerPrintActivity">
<LinearLayout
android:id="@+id/rl_toollayout"
android:layout_width="match_parent"
android:layout_height="@dimen/fifty_fiveheight"
android:orientation="horizontal">
<ImageView
android:id="@+id/back_icon"
android:layout_width="@dimen/forty_fivewidth"
android:layout_height="match_parent"
android:padding="@dimen/padding_ten"
android:src="@drawable/icon_back"
android:tint="@color/blackcolor" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="@string/set_fingerprinttxt_finger"
android:textColor="@color/blackcolor"
android:textStyle="bold"
android:textSize="@dimen/eighteenText_size" />
<ImageView
android:id="@+id/map_icon"
android:layout_width="@dimen/thirty_width"
android:layout_height="match_parent"
android:layout_marginEnd="@dimen/layout_marginEnd_five"
android:padding="@dimen/padding_two"
android:src="@drawable/icon_map"
android:tint="@color/blackcolor" />
<ImageView
android:id="@+id/notification_icon"
android:layout_width="@dimen/thirty_width"
android:layout_height="match_parent"
android:layout_marginEnd="@dimen/layout_marginEnd_five"
android:padding="@dimen/padding_two"
android:src="@drawable/icon_bell"
android:tint="@color/blackcolor" />
</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/rl_toollayout"
android:scrollbarThumbVertical="@color/transparent"
android:scrollbars="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/put_Txt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/layout_margintop_eighty"
android:gravity="center"
android:text="@string/put_txt_finger"
android:textColor="@color/blackcolor"
android:textSize="@dimen/sixteenText_size" />
<ImageView
android:id="@+id/finger_print_img"
android:layout_width="@dimen/oneHundred_twenty_width"
android:layout_height="@dimen/oneHundred_twenty_height"
android:layout_below="@+id/put_Txt"
android:layout_centerInParent="true"
android:layout_marginTop="@dimen/layout_margintop_oneHundredtwenty"
android:padding="@dimen/padding_five"
android:src="@drawable/icon_fingerpriint"
android:tint="@color/light_green" />
<TextView
android:id="@+id/save_txt"
android:layout_width="match_parent"
android:layout_height="@dimen/forty_height"
android:layout_below="@+id/finger_print_img"
android:layout_marginBottom="@dimen/layout_marginBottom_fifty"
android:layout_marginStart="@dimen/layout_marginStart_sixty"
android:layout_marginEnd="@dimen/layout_marginEnd_sixty"
android:layout_marginTop="@dimen/layout_margintop_oneHundredtwenty"
android:background="@drawable/yellow_bg"
android:gravity="center"
android:text="@string/save_txt_finger"
android:textColor="@color/whitecolor"
android:textSize="@dimen/fourteenText_size" />
</RelativeLayout>
</ScrollView>
</RelativeLayout>