author | nikita@localhost |
Mon, 22 Jun 2009 15:59:18 +0200 | |
changeset 256 | 35f81983d351 |
parent 230 | 21d91ef67e97 |
child 489 | 77c573c8217e |
permissions | -rw-r--r-- |
212 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
|
256 | 3 |
android:orientation="vertical" android:layout_width="fill_parent" |
4 |
android:layout_height="fill_parent"> |
|
5 |
<LinearLayout android:layout_width="fill_parent" |
|
6 |
android:layout_height="fill_parent" android:orientation="vertical" |
|
212 | 7 |
android:padding="10dip"> |
256 | 8 |
<TextView android:id="@+id/create_account_label_username" |
9 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
10 |
android:text="@string/create_account_username" style="@style/Label" /> |
|
212 | 11 |
<EditText android:id="@+id/create_account_username" |
256 | 12 |
android:layout_width="fill_parent" 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
|
13 |
android:singleLine="true" /> |
256 | 14 |
<TextView android:id="@+id/create_account_label_password" |
15 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
16 |
android:text="@string/create_account_password" style="@style/Label" /> |
|
212 | 17 |
<EditText android:id="@+id/create_account_password" |
256 | 18 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
19 |
android:password="true" android:singleLine="true" /> |
|
20 |
<TextView android:id="@+id/create_account_label_confirm_password" |
|
21 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
22 |
android:text="@string/create_account_confirm_password" style="@style/Label" /> |
|
212 | 23 |
<EditText android:id="@+id/create_account_confirm_password" |
256 | 24 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
25 |
android:password="true" android:singleLine="true" /> |
|
26 |
<View android:layout_height="21dp" android:layout_width="fill_parent" /> |
|
212 | 27 |
<Button android:id="@+id/create_account_button" |
256 | 28 |
android:layout_width="fill_parent" android:layout_height="fill_parent" |
212 | 29 |
android:text="@string/button_create_account" /> |
256 | 30 |
<Button android:id="@+id/create_account_login_button" |
31 |
android:layout_width="fill_parent" android:layout_height="fill_parent" |
|
32 |
android:text="@string/button_create_login_account" /> |
|
212 | 33 |
</LinearLayout> |
34 |
</ScrollView> |