| author | Vincent V. <marseille@beem-project.com> | 
| Mon, 16 Jul 2012 15:43:55 +0200 | |
| changeset 946 | 7caab0161cf9 | 
| parent 783 | cfc0f43b29b2 | 
| permissions | -rw-r--r-- | 
| 699 | 1  | 
<?xml version="1.0" encoding="utf-8"?>  | 
| 703 | 2  | 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  | 
| 699 | 3  | 
android:layout_height="fill_parent" android:layout_width="fill_parent"  | 
| 703 | 4  | 
android:orientation="vertical" >  | 
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
783 
diff
changeset
 | 
5  | 
<ScrollView android:layout_height="0dip" android:layout_width="fill_parent"  | 
| 703 | 6  | 
android:layout_weight="1">  | 
7  | 
<LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent"  | 
|
8  | 
android:orientation="vertical" >  | 
|
9  | 
<ImageView android:id="@+id/logo"  | 
|
10  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
|
11  | 
android:layout_marginTop="15dp"  | 
|
12  | 
android:layout_marginBottom="30dp"  | 
|
13  | 
android:src="@drawable/logo"/>  | 
|
14  | 
<TextView  | 
|
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
783 
diff
changeset
 | 
15  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
| 703 | 16  | 
android:text="@string/account_wizard_configure_text"  | 
17  | 
android:textSize="18sp"  | 
|
18  | 
android:paddingBottom="10dip" />  | 
|
19  | 
<TextView  | 
|
20  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
|
21  | 
android:text="@string/JabberID" style="@style/Label" />  | 
|
22  | 
<EditText android:id="@+id/account_username"  | 
|
23  | 
android:inputType="textEmailAddress" android:imeOptions="actionNext"  | 
|
24  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
|
25  | 
android:singleLine="true"  | 
|
| 
767
 
74a987c3efb5
Add properties needed for accessibility.
 
Nolan Darilek <nolan@thewordnerd.info> 
parents: 
703 
diff
changeset
 | 
26  | 
android:hint="beem@beem-project.com "  | 
| 
 
74a987c3efb5
Add properties needed for accessibility.
 
Nolan Darilek <nolan@thewordnerd.info> 
parents: 
703 
diff
changeset
 | 
27  | 
android:contentDescription="@string/JabberID"/>  | 
| 703 | 28  | 
<TextView  | 
29  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
|
30  | 
android:text="@string/Password" style="@style/Label" />  | 
|
31  | 
<EditText android:id="@+id/account_password"  | 
|
32  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
|
33  | 
android:inputType="textPassword" android:imeOptions="actionNext"  | 
|
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
783 
diff
changeset
 | 
34  | 
android:singleLine="true" android:contentDescription="@string/Password"/>  | 
| 703 | 35  | 
</LinearLayout>  | 
36  | 
</ScrollView>  | 
|
| 699 | 37  | 
|
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
783 
diff
changeset
 | 
38  | 
<RelativeLayout  | 
| 699 | 39  | 
android:gravity="right"  | 
40  | 
android:layout_height="wrap_content"  | 
|
41  | 
android:layout_width="fill_parent"  | 
|
42  | 
android:background="@drawable/bottombar" >  | 
|
43  | 
||
44  | 
<Button  | 
|
45  | 
android:id="@+id/manual_setup"  | 
|
| 
783
 
cfc0f43b29b2
internationalized account wizard
 
Stefan Endrullis <stefan@endrullis.de> 
parents: 
767 
diff
changeset
 | 
46  | 
android:text="@string/AccountConfigureManualConfiguration"  | 
| 699 | 47  | 
android:minWidth="100dp"  | 
48  | 
android:layout_height="wrap_content"  | 
|
49  | 
android:layout_width="wrap_content"  | 
|
50  | 
android:layout_alignParentLeft="true"  | 
|
51  | 
android:layout_centerVertical="true"  | 
|
52  | 
/>  | 
|
53  | 
||
54  | 
<Button  | 
|
55  | 
android:id="@+id/next"  | 
|
| 
783
 
cfc0f43b29b2
internationalized account wizard
 
Stefan Endrullis <stefan@endrullis.de> 
parents: 
767 
diff
changeset
 | 
56  | 
android:text="@string/Continue"  | 
| 699 | 57  | 
android:minWidth="100dp"  | 
58  | 
android:layout_height="wrap_content"  | 
|
59  | 
android:layout_width="wrap_content"  | 
|
60  | 
android:drawableRight="@drawable/button_indicator_next"  | 
|
61  | 
android:layout_alignParentRight="true"  | 
|
62  | 
android:layout_centerVertical="true"  | 
|
63  | 
android:enabled="false"  | 
|
64  | 
/>  | 
|
65  | 
</RelativeLayout>  | 
|
66  | 
||
| 703 | 67  | 
</LinearLayout>  |