aboutsummaryrefslogtreecommitdiff
path: root/res/layout/my_schedule_unconfigured.xml
blob: 0b4a90baa28a1c34b7d0430b643bf905f6e5f3a0 (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
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
		android:layout_width="fill_parent"
		android:layout_height="fill_parent"
		android:orientation="vertical"
		android:background="@color/main_bg"
		android:paddingLeft="5dp"
>
    
    <TextView
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:textSize="14sp"
		android:textStyle="bold"
		android:gravity="center"
		android:text="@string/my_schedule_lp"				
	/>
	
	<TextView
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:text="@string/my_schedule_user"				
	/>
	<EditText
		android:id="@+id/my_schedule_user"
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
	/>
	<TextView
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:text="@string/my_schedule_pass"				
	/>
	<EditText
		android:id="@+id/my_schedule_pass"
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:inputType="textPassword"
	/>
	
	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content"
		android:orientation="horizontal"
	>
		<TextView
			android:id="@+id/my_schedule_status"
			android:layout_height="wrap_content"
			android:layout_width="fill_parent"
			android:layout_weight="2"
			android:layout_gravity="center"
		/>
		<Button 
			android:id="@+id/my_schedule_login"
			android:layout_height="wrap_content"
			android:layout_width="fill_parent"
			android:layout_weight="3"
			android:layout_gravity="right"			
			android:text="@string/my_schedule_login"
		/>
	</LinearLayout>

	<TextView
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:textSize="14sp"
		android:textStyle="bold"		
		android:text="@string/my_schedule_login_about"				
	/>
	<TextView
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:background="@drawable/rounded"
		android:paddingLeft="5dp"
		android:textColor="@color/linaro_green"
		android:text="@string/my_schedule_info"		
	/>

    <WebView 
        android:id="@+id/my_schedule_webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
    />

</LinearLayout>