author | marseille |
Thu, 23 Apr 2009 16:59:45 +0200 | |
changeset 145 | 70b67bdac4fc |
parent 117 | 40a48262a670 |
child 166 | d076437706a4 |
permissions | -rw-r--r-- |
88 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
117
40a48262a670
Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents:
114
diff
changeset
|
2 |
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
40a48262a670
Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents:
114
diff
changeset
|
3 |
android:orientation="vertical" android:layout_width="fill_parent" |
40a48262a670
Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents:
114
diff
changeset
|
4 |
android:layout_height="fill_parent"> |
40a48262a670
Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents:
114
diff
changeset
|
5 |
<LinearLayout |
114 | 6 |
android:orientation="vertical" android:layout_width="fill_parent" |
7 |
android:layout_height="fill_parent"> |
|
8 |
||
9 |
<TextView android:layout_width="fill_parent" |
|
10 |
android:layout_height="wrap_content" android:text="Server connection" |
|
11 |
android:textSize="18sp" /> |
|
12 |
||
13 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
14 |
android:orientation="horizontal" android:layout_width="fill_parent" |
|
15 |
android:layout_height="wrap_content"> |
|
16 |
<TextView android:layout_width="wrap_content" |
|
17 |
android:layout_height="wrap_content" android:text="Host/Port:" |
|
18 |
android:minWidth="90dp" android:textSize="14sp" /> |
|
19 |
<EditText android:id="@+id/host" android:layout_width="fill_parent" |
|
20 |
android:layout_height="wrap_content" android:singleLine="true" |
|
21 |
android:textSize="14sp" android:autoText="false" android:capitalize="none" |
|
22 |
android:layout_weight="2" android:scrollHorizontally="true" /> |
|
23 |
<EditText android:id="@+id/port" android:layout_width="fill_parent" |
|
24 |
android:layout_height="wrap_content" android:singleLine="true" |
|
25 |
android:textSize="14sp" android:autoText="false" android:capitalize="none" |
|
26 |
android:layout_weight="3" android:scrollHorizontally="true" /> |
|
27 |
</LinearLayout> |
|
28 |
||
29 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
30 |
android:orientation="horizontal" android:layout_width="fill_parent" |
|
31 |
android:layout_height="wrap_content"> |
|
32 |
<TextView android:layout_width="wrap_content" |
|
33 |
android:layout_height="wrap_content" android:text="Userid:" |
|
34 |
android:minWidth="90dp" android:textSize="14sp" /> |
|
35 |
<EditText android:id="@+id/userid" android:layout_width="fill_parent" |
|
36 |
android:layout_height="wrap_content" android:singleLine="true" |
|
37 |
android:textSize="14sp" android:autoText="false" android:capitalize="none" |
|
38 |
android:scrollHorizontally="true" /> |
|
39 |
</LinearLayout> |
|
40 |
||
41 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
42 |
android:orientation="horizontal" android:layout_width="fill_parent" |
|
43 |
android:layout_height="wrap_content"> |
|
44 |
<TextView android:layout_width="wrap_content" |
|
45 |
android:layout_height="wrap_content" android:text="Password:" |
|
46 |
android:minWidth="90dp" android:textSize="14sp" /> |
|
47 |
<EditText android:id="@+id/password" android:layout_width="fill_parent" |
|
48 |
android:layout_height="wrap_content" android:singleLine="true" |
|
49 |
android:password="true" android:textSize="14sp" android:autoText="false" |
|
50 |
android:capitalize="none" android:scrollHorizontally="true" /> |
|
51 |
</LinearLayout> |
|
52 |
||
53 |
<Spinner android:id="@+id/proxy_type" android:layout_width="fill_parent" |
|
54 |
android:layout_height="wrap_content" /> |
|
88 | 55 |
|
114 | 56 |
<LinearLayout android:id="@+id/proxy_layout" |
57 |
android:orientation="vertical" android:layout_width="fill_parent" |
|
58 |
android:layout_height="wrap_content"> |
|
59 |
||
60 |
<TextView android:layout_width="fill_parent" |
|
61 |
android:layout_height="wrap_content" android:text="Proxy informations" |
|
62 |
android:textSize="18sp" /> |
|
63 |
||
64 |
<LinearLayout android:orientation="horizontal" |
|
65 |
android:layout_width="fill_parent" android:layout_height="wrap_content"> |
|
66 |
<TextView android:layout_width="wrap_content" |
|
67 |
android:layout_height="wrap_content" android:text="Host/Port:" |
|
68 |
android:minWidth="90dp" android:textSize="14sp" /> |
|
69 |
<EditText android:id="@+id/proxy_host" android:layout_width="fill_parent" |
|
70 |
android:layout_height="wrap_content" android:singleLine="true" |
|
71 |
android:textSize="14sp" android:autoText="false" android:capitalize="none" |
|
72 |
android:layout_weight="2" android:scrollHorizontally="true" /> |
|
73 |
<EditText android:id="@+id/proxy_port" android:layout_width="fill_parent" |
|
74 |
android:layout_height="wrap_content" android:singleLine="true" |
|
75 |
android:textSize="14sp" android:autoText="false" android:capitalize="none" |
|
76 |
android:layout_weight="3" android:scrollHorizontally="true" /> |
|
77 |
</LinearLayout> |
|
88 | 78 |
|
114 | 79 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
80 |
android:orientation="horizontal" android:layout_width="fill_parent" |
|
81 |
android:layout_height="wrap_content"> |
|
82 |
<TextView android:layout_width="wrap_content" |
|
83 |
android:layout_height="wrap_content" android:text="Login :" |
|
84 |
android:minWidth="90dp" android:textSize="14sp" /> |
|
85 |
<EditText android:id="@+id/proxy_login" |
|
86 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
87 |
android:singleLine="true" android:textSize="14sp" android:autoText="false" |
|
88 |
android:capitalize="none" android:scrollHorizontally="true" /> |
|
89 |
</LinearLayout> |
|
90 |
||
91 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
92 |
android:orientation="horizontal" android:layout_width="fill_parent" |
|
93 |
android:layout_height="wrap_content"> |
|
94 |
<TextView android:layout_width="wrap_content" |
|
95 |
android:layout_height="wrap_content" android:text="Password:" |
|
96 |
android:minWidth="90dp" android:textSize="14sp" /> |
|
97 |
<EditText android:id="@+id/proxy_pwd" android:layout_width="fill_parent" |
|
98 |
android:layout_height="wrap_content" android:singleLine="true" |
|
99 |
android:password="true" android:textSize="14sp" android:autoText="false" |
|
100 |
android:capitalize="none" android:scrollHorizontally="true" /> |
|
101 |
</LinearLayout> |
|
102 |
</LinearLayout> |
|
103 |
||
104 |
<Button android:id="@+id/ok" android:layout_width="wrap_content" |
|
105 |
android:layout_height="wrap_content" android:layout_gravity="center_horizontal" |
|
106 |
android:text="OK"> |
|
107 |
<requestFocus /> |
|
108 |
</Button> |
|
145 | 109 |
<Button android:id="@+id/reconnect" android:layout_width="wrap_content" |
110 |
android:layout_height="wrap_content" android:layout_gravity="center_horizontal" |
|
111 |
android:text="Reconnect"> |
|
112 |
<requestFocus /> |
|
113 |
</Button> |
|
114 | 114 |
|
117
40a48262a670
Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents:
114
diff
changeset
|
115 |
</LinearLayout> |
40a48262a670
Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents:
114
diff
changeset
|
116 |
</ScrollView> |