699
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3 |
android:layout_height="fill_parent" android:layout_width="fill_parent"
|
|
4 |
>
|
|
5 |
<TextView android:id="@+id/wizard_account_tv"
|
|
6 |
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
7 |
android:layout_alignParentTop="true"
|
|
8 |
android:text="@string/account_wizard_text1"
|
|
9 |
android:textSize="18sp"
|
|
10 |
android:paddingBottom="10dip" />
|
|
11 |
|
|
12 |
<TextView android:id="@+id/label_username"
|
|
13 |
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
14 |
android:layout_below="@id/wizard_account_tv"
|
|
15 |
android:text="@string/JabberID" style="@style/Label" />
|
|
16 |
<EditText android:id="@+id/account_username"
|
|
17 |
android:inputType="textEmailAddress" android:imeOptions="actionNext"
|
|
18 |
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
19 |
android:layout_below="@id/label_username"
|
|
20 |
android:singleLine="true"
|
|
21 |
android:hint="beem@beem-project.com "/>
|
|
22 |
<TextView android:id="@+id/label_password"
|
|
23 |
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
24 |
android:layout_below="@id/account_username"
|
|
25 |
android:text="@string/Password" style="@style/Label" />
|
|
26 |
<EditText android:id="@+id/account_password"
|
|
27 |
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
28 |
android:layout_below="@id/label_password"
|
|
29 |
android:inputType="textPassword" android:imeOptions="actionNext"
|
|
30 |
android:password="true" android:singleLine="true" />
|
|
31 |
|
|
32 |
<RelativeLayout
|
|
33 |
android:layout_alignParentBottom="true"
|
|
34 |
android:gravity="right"
|
|
35 |
android:layout_height="wrap_content"
|
|
36 |
android:layout_width="fill_parent"
|
|
37 |
android:background="@drawable/bottombar" >
|
|
38 |
|
|
39 |
<Button
|
|
40 |
android:id="@+id/manual_setup"
|
|
41 |
android:text="Configuration manuelle"
|
|
42 |
android:minWidth="100dp"
|
|
43 |
android:layout_height="wrap_content"
|
|
44 |
android:layout_width="wrap_content"
|
|
45 |
android:layout_alignParentLeft="true"
|
|
46 |
android:layout_centerVertical="true"
|
|
47 |
/>
|
|
48 |
|
|
49 |
<Button
|
|
50 |
android:id="@+id/next"
|
|
51 |
android:text="suivant"
|
|
52 |
android:minWidth="100dp"
|
|
53 |
android:layout_height="wrap_content"
|
|
54 |
android:layout_width="wrap_content"
|
|
55 |
android:drawableRight="@drawable/button_indicator_next"
|
|
56 |
android:layout_alignParentRight="true"
|
|
57 |
android:layout_centerVertical="true"
|
|
58 |
android:enable="false"
|
|
59 |
/>
|
|
60 |
</RelativeLayout>
|
|
61 |
|
|
62 |
</RelativeLayout>
|