Initial commit.
[wl-mobile.git] / res / layout / signin.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:orientation="vertical"
4     android:layout_width="fill_parent"
5     android:layout_height="fill_parent"
6     >
7
8     <TextView
9                 android:layout_width="fill_parent"
10         android:layout_height="wrap_content"
11         android:padding="10sp"
12         android:textStyle="bold"
13         android:textSize="16sp"
14         android:text="Sign in" 
15         android:layout_marginRight="10sp" 
16     />
17
18     <TextView
19                 android:layout_width="fill_parent"
20         android:layout_height="wrap_content"
21         android:layout_marginBottom="20sp"
22         android:textStyle="italic"
23         android:text="Sign up to create your own shelves, access them online and share with your friends." 
24         android:layout_marginRight="10sp"
25         android:layout_marginLeft="10sp"         
26     />
27     
28     <TextView
29                 android:layout_width="fill_parent"
30         android:layout_height="wrap_content"
31         android:text="Login"
32         android:layout_marginLeft="10sp" 
33         android:layout_marginRight="10sp" 
34     />
35         
36         <EditText
37                 android:layout_width="fill_parent"
38         android:layout_height="wrap_content"
39         android:hint="Login"
40         android:layout_marginLeft="10sp"        
41         android:layout_marginRight="10sp" 
42     />
43         
44     <TextView
45                 android:layout_width="fill_parent"
46         android:layout_height="wrap_content"
47         android:text="Password" 
48         android:layout_marginLeft="10sp"        
49         android:layout_marginRight="10sp" 
50     />        
51
52         <EditText
53                 android:layout_width="fill_parent"
54         android:layout_height="wrap_content"
55         android:hint="Password"
56         android:layout_marginLeft="10sp"        
57         android:layout_marginRight="10sp"     
58     />
59     
60     
61     <CheckBox
62                 android:layout_width="fill_parent"
63         android:layout_height="wrap_content"
64         android:checked="true"
65         android:hint="Stay signed in"
66         android:layout_marginLeft="10sp"  
67         android:layout_marginRight="10sp"                  
68     />
69     
70         <Button     
71                 android:layout_width="fill_parent"
72         android:layout_height="wrap_content"
73         android:text="Sign in"
74         android:height="70sp"
75         android:id="@+id/sign_in"
76         android:layout_marginTop="20sp" 
77         android:layout_marginLeft="10sp"        
78         android:layout_marginRight="10sp" 
79     />
80
81         <Button     
82                 android:layout_width="fill_parent"
83         android:layout_height="wrap_content"
84         android:height="70sp"
85         android:text="No account? Sign up!"
86         android:layout_marginLeft="10sp"
87         android:layout_marginRight="10sp" 
88     />
89
90 </LinearLayout>