author | Philippe Lago <lago_p@epitech.net> |
Tue, 21 Apr 2009 14:39:00 +0200 | |
changeset 111 | d0fab932cb6e |
parent 110 | f9be2a11c4c1 |
child 114 | a40f65ceeb1a |
permissions | -rw-r--r-- |
88 | 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 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
8 |
android:orientation="horizontal" |
|
9 |
android:layout_width="fill_parent" |
|
10 |
android:layout_height="wrap_content" |
|
11 |
> |
|
12 |
<TextView |
|
13 |
android:layout_width="wrap_content" |
|
14 |
android:layout_height="wrap_content" |
|
15 |
android:text="Host/Port:" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
16 |
android:minWidth="90dp" |
88 | 17 |
/> |
18 |
||
19 |
<EditText android:id="@+id/host" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
20 |
android:layout_width="fill_parent" |
88 | 21 |
android:layout_height="wrap_content" |
22 |
android:singleLine="true" |
|
23 |
android:textSize="16sp" |
|
24 |
android:autoText="false" |
|
25 |
android:capitalize="none" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
26 |
android:layout_weight="2" |
88 | 27 |
android:scrollHorizontally="true"/> |
28 |
<EditText android:id="@+id/port" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
29 |
android:layout_width="fill_parent" |
88 | 30 |
android:layout_height="wrap_content" |
31 |
android:singleLine="true" |
|
32 |
android:textSize="16sp" |
|
33 |
android:autoText="false" |
|
34 |
android:capitalize="none" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
35 |
android:layout_weight="3" |
88 | 36 |
android:scrollHorizontally="true"/> |
37 |
</LinearLayout> |
|
38 |
||
39 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
40 |
android:orientation="horizontal" |
|
41 |
android:layout_width="fill_parent" |
|
42 |
android:layout_height="wrap_content" |
|
43 |
> |
|
44 |
<TextView |
|
45 |
android:layout_width="wrap_content" |
|
46 |
android:layout_height="wrap_content" |
|
47 |
android:text="Userid:" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
48 |
android:minWidth="90dp" |
88 | 49 |
/> |
50 |
<EditText android:id="@+id/userid" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
51 |
android:layout_width="fill_parent" |
88 | 52 |
android:layout_height="wrap_content" |
53 |
android:singleLine="true" |
|
54 |
android:textSize="16sp" |
|
55 |
android:autoText="false" |
|
56 |
android:capitalize="none" |
|
57 |
android:scrollHorizontally="true"/> |
|
58 |
</LinearLayout> |
|
59 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
60 |
android:orientation="horizontal" |
|
61 |
android:layout_width="fill_parent" |
|
62 |
android:layout_height="wrap_content" |
|
63 |
> |
|
64 |
<TextView |
|
65 |
android:layout_width="wrap_content" |
|
66 |
android:layout_height="wrap_content" |
|
67 |
android:text="Password:" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
68 |
android:minWidth="90dp" |
88 | 69 |
/> |
70 |
<EditText android:id="@+id/password" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
71 |
android:layout_width="fill_parent" |
88 | 72 |
android:layout_height="wrap_content" |
73 |
android:singleLine="true" |
|
74 |
android:password="true" |
|
75 |
android:textSize="16sp" |
|
76 |
android:autoText="false" |
|
77 |
android:capitalize="none" |
|
78 |
android:scrollHorizontally="true"/> |
|
79 |
</LinearLayout> |
|
80 |
||
81 |
<Button android:id="@+id/ok" |
|
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
82 |
android:layout_width="wrap_content" |
110
f9be2a11c4c1
Ajout de l'activité changement de status
Philippe Lago <lago_p@epitech.net>
parents:
88
diff
changeset
|
83 |
android:layout_height="wrap_content" |
111
d0fab932cb6e
Class et layout ChangeStatus pour bart + modification des layout pour gerer le mode paysage
Philippe Lago <lago_p@epitech.net>
parents:
110
diff
changeset
|
84 |
android:layout_gravity="center_horizontal" |
88 | 85 |
android:text="OK"> |
86 |
<requestFocus/> |
|
87 |
</Button> |
|
88 |
</LinearLayout> |