blob: 404fbbdbcb62abab121fe0684d975bd815a8bc13 (
plain)
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
|
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/spacing_normal"
android:orientation="vertical">
<TextView
android:id="@+id/label_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/spacing_normal"
android:textAppearance="?android:textAppearanceLarge"
android:text="@string/app_name" />
<TextView
android:id="@+id/label_server"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/field_server"
android:textAppearance="?android:textAppearanceMedium"
android:text="@string/label_server" />
<EditText
android:id="@+id/field_server"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/label_name"
android:layout_toEndOf="@+id/label_server"
android:layout_toRightOf="@+id/label_server"
android:layout_marginTop="@dimen/spacing_normal"
android:layout_marginStart="@dimen/spacing_normal"
android:layout_marginLeft="@dimen/spacing_normal"
android:text="http://demo.traccar.org" />
<TextView
android:id="@+id/label_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/field_server"
android:layout_marginTop="@dimen/spacing_normal"
android:gravity="center_horizontal"
android:text="@string/label_info" />
<Button
android:id="@+id/button_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/label_info"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/spacing_normal"
android:paddingStart="@dimen/spacing_normal"
android:paddingLeft="@dimen/spacing_normal"
android:paddingEnd="@dimen/spacing_normal"
android:paddingRight="@dimen/spacing_normal"
android:text="@string/button_start" />
</RelativeLayout>
|