author | dasilvj@jean-manuel-da-silvas-macbook.local |
Mon, 01 Jun 2009 20:47:46 +0200 | |
changeset 230 | 21d91ef67e97 |
parent 212 | bbc0b169cdf0 |
child 256 | 35f81983d351 |
permissions | -rw-r--r-- |
212 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<ScrollView 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 |
<LinearLayout |
|
7 |
android:layout_width="fill_parent" |
|
8 |
android:layout_height="fill_parent" |
|
9 |
android:orientation="vertical" |
|
10 |
android:padding="10dip"> |
|
11 |
<TextView android:id="@+id/create_account_label_username" |
|
12 |
android:layout_width="fill_parent" |
|
13 |
android:layout_height="wrap_content" |
|
14 |
android:text="@string/create_account_username" |
|
15 |
style="@style/Label" /> |
|
16 |
<EditText android:id="@+id/create_account_username" |
|
17 |
android:layout_width="fill_parent" |
|
230
21d91ef67e97
Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
212
diff
changeset
|
18 |
android:layout_height="wrap_content" |
21d91ef67e97
Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
212
diff
changeset
|
19 |
android:singleLine="true" /> |
212 | 20 |
<TextView android:id="@+id/create_account_label_password" |
21 |
android:layout_width="fill_parent" |
|
22 |
android:layout_height="wrap_content" |
|
23 |
android:text="@string/create_account_password" |
|
24 |
style="@style/Label" /> |
|
25 |
<EditText android:id="@+id/create_account_password" |
|
26 |
android:layout_width="fill_parent" |
|
27 |
android:layout_height="wrap_content" |
|
230
21d91ef67e97
Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
212
diff
changeset
|
28 |
android:password="true" |
21d91ef67e97
Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
212
diff
changeset
|
29 |
android:singleLine="true" /> |
212 | 30 |
<TextView android:id="@+id/create_account_label_confirm_password" |
31 |
android:layout_width="fill_parent" |
|
32 |
android:layout_height="wrap_content" |
|
33 |
android:text="@string/create_account_confirm_password" |
|
34 |
style="@style/Label" /> |
|
35 |
<EditText android:id="@+id/create_account_confirm_password" |
|
36 |
android:layout_width="fill_parent" |
|
37 |
android:layout_height="wrap_content" |
|
230
21d91ef67e97
Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
212
diff
changeset
|
38 |
android:password="true" |
21d91ef67e97
Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
212
diff
changeset
|
39 |
android:singleLine="true" /> |
212 | 40 |
<View |
41 |
android:layout_height="21dp" |
|
42 |
android:layout_width="fill_parent" /> |
|
43 |
<Button android:id="@+id/create_account_button" |
|
44 |
android:layout_width="fill_parent" |
|
45 |
android:layout_height="fill_parent" |
|
46 |
android:text="@string/button_create_account" /> |
|
47 |
</LinearLayout> |
|
48 |
</ScrollView> |