~ubuntuone-client-engineering/droidcouch/trunk

« back to all changes in this revision

Viewing changes to res/layout/ubuntuone_login.xml

  • Committer: Alejandro J. Cura
  • Date: 2011-03-04 14:08:40 UTC
  • Revision ID: git-v1:8c8baa522b6adb2b798ea333abe95fe5c2a1db19
UI for Ubuntu One login (launchpad bug #725290), modified retry code
to be async and use the login UI

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
 
 
3
<RelativeLayout
 
4
        android:id="@+id/relativeLayout1"
 
5
        android:layout_width="fill_parent"
 
6
        android:layout_height="fill_parent"
 
7
        xmlns:android="http://schemas.android.com/apk/res/android">
 
8
        <TextView
 
9
                android:id="@+id/username_label"
 
10
                android:layout_alignParentLeft="true"
 
11
                android:layout_height="wrap_content"
 
12
                android:layout_width="fill_parent"
 
13
                android:text="@string/username_label" />
 
14
        <EditText
 
15
                android:id="@+id/username_editor"
 
16
                android:layout_below="@+id/username_label"
 
17
                android:layout_alignLeft="@+id/username_label"
 
18
                android:layout_alignRight="@+id/username_label"
 
19
                android:layout_height="wrap_content"
 
20
                android:layout_width="fill_parent" />
 
21
        <TextView
 
22
                android:id="@+id/password_label"
 
23
                android:layout_below="@+id/username_editor"
 
24
                android:layout_alignLeft="@+id/username_editor"
 
25
                android:layout_alignRight="@+id/username_editor"
 
26
                android:layout_height="wrap_content"
 
27
                android:layout_width="fill_parent"
 
28
                android:text="@string/password_label" />
 
29
        <EditText
 
30
                android:id="@+id/password_editor"
 
31
                android:password="true"
 
32
                android:layout_below="@+id/password_label"
 
33
                android:layout_alignLeft="@+id/password_label"
 
34
                android:layout_alignRight="@+id/password_label"
 
35
                android:layout_height="wrap_content"
 
36
                android:layout_width="fill_parent" />
 
37
        <Button
 
38
                android:id="@+id/login_button"
 
39
                android:text="@string/login_label"
 
40
                android:layout_below="@+id/password_editor"
 
41
                android:layout_alignRight="@+id/password_editor"
 
42
                android:layout_height="wrap_content"
 
43
                android:layout_width="160dip" />
 
44
</RelativeLayout>