alpha 0.0.2
[DHBWCampusApp.git] / app / src / main / res / layout / fragment_first_run.xml
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:tools="http://schemas.android.com/tools"
3     android:orientation="vertical"
4     android:layout_width="match_parent"
5     android:layout_height="match_parent"
6     tools:context="de.dhbwloe.campusapp.fragments.FirstRun"
7     android:padding="8dp">
8
9     <RelativeLayout
10         android:layout_width="match_parent"
11         android:layout_height="wrap_content">
12
13         <TextView
14             android:layout_width="match_parent"
15             android:layout_height="wrap_content"
16             android:text="@string/firstrun_select_couse"
17             android:id="@+id/textView19" />
18
19         <TextView
20             android:layout_width="wrap_content"
21             android:layout_height="wrap_content"
22             android:text="@string/firstrun_select_couse_example"
23             android:id="@+id/textView20"
24             android:layout_below="@+id/textView19" />
25
26         <RelativeLayout
27             android:layout_width="wrap_content"
28             android:layout_height="wrap_content"
29             android:layout_centerHorizontal="true"
30             android:layout_below="@+id/textView20">
31
32             <EditText
33                 android:layout_width="150dp"
34                 android:layout_height="wrap_content"
35                 android:id="@+id/courseInput"
36                 android:layout_gravity="center_horizontal"
37                 android:layout_alignWithParentIfMissing="false" />
38
39             <Button
40                 android:layout_width="wrap_content"
41                 android:layout_height="wrap_content"
42                 android:text="@string/firstrun_course_ok_button"
43                 android:id="@+id/courseSubmitBtn"
44                 android:layout_toRightOf="@+id/courseInput" />
45         </RelativeLayout>
46
47     </RelativeLayout>
48
49     <TextView
50         android:layout_width="wrap_content"
51         android:layout_height="wrap_content"
52         android:text="@string/firstrun_run_as_guest"
53         android:id="@+id/textView21"
54         android:layout_gravity="center_horizontal"
55         android:layout_marginTop="18dp" />
56
57     <Button
58         android:layout_width="wrap_content"
59         android:layout_height="wrap_content"
60         android:text="@string/firstrun_run_as_guest_button"
61         android:id="@+id/startAppBtn"
62         android:layout_gravity="center_horizontal" />
63
64     <TextView
65         android:layout_width="wrap_content"
66         android:layout_height="wrap_content"
67         android:text="@string/firstrun_settings_note"
68         android:id="@+id/textView22"
69         android:layout_gravity="center_horizontal"
70         android:layout_marginTop="18dp" />
71
72     <TextView
73         android:layout_width="wrap_content"
74         android:layout_height="wrap_content"
75         android:textAppearance="?android:attr/textAppearanceSmall"
76         android:text="@string/firstrun_slow_note"
77         android:id="@+id/textView23"
78         android:layout_gravity="center_horizontal"
79         android:layout_marginTop="24dp"
80         android:textColor="@color/color_dhbw_lightgray" />
81
82 </LinearLayout>