author | Da Risk <darisk972@gmail.com> |
Thu, 27 May 2010 01:41:27 +0200 | |
changeset 757 | 1a5cb28a1c4d |
parent 506 | 8e33a89c21a3 |
child 767 | 74a987c3efb5 |
permissions | -rw-r--r-- |
212 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
|
506
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
3 |
android:layout_width="fill_parent" android:layout_height="fill_parent" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
4 |
android:orientation="vertical"> |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
5 |
<LinearLayout android:orientation="vertical" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
6 |
android:layout_width="fill_parent" android:layout_height="fill_parent" |
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" |
489
77c573c8217e
some improvements about input methods
Da Risk <darisk972@gmail.com>
parents:
256
diff
changeset
|
12 |
android:inputType="textEmailAddress" android:imeOptions="actionNext" |
256 | 13 |
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
|
14 |
android:singleLine="true" /> |
256 | 15 |
<TextView android:id="@+id/create_account_label_password" |
16 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
17 |
android:text="@string/create_account_password" style="@style/Label" /> |
|
212 | 18 |
<EditText android:id="@+id/create_account_password" |
256 | 19 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
489
77c573c8217e
some improvements about input methods
Da Risk <darisk972@gmail.com>
parents:
256
diff
changeset
|
20 |
android:inputType="textPassword" android:imeOptions="actionNext" |
256 | 21 |
android:password="true" android:singleLine="true" /> |
22 |
<TextView android:id="@+id/create_account_label_confirm_password" |
|
23 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
24 |
android:text="@string/create_account_confirm_password" style="@style/Label" /> |
|
212 | 25 |
<EditText android:id="@+id/create_account_confirm_password" |
256 | 26 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
489
77c573c8217e
some improvements about input methods
Da Risk <darisk972@gmail.com>
parents:
256
diff
changeset
|
27 |
android:inputType="textPassword" android:imeOptions="actionNext" |
256 | 28 |
android:password="true" android:singleLine="true" /> |
506
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
29 |
<View android:layout_width="fill_parent" android:layout_height="wrap_content" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
30 |
android:layout_weight="1" android:layout_marginBottom="18dp" /> |
212 | 31 |
<Button android:id="@+id/create_account_button" |
506
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
32 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
33 |
android:text="@string/button_create_account" android:textStyle="bold" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
34 |
android:textColor="#333333" android:textSize="18sp" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
35 |
android:layout_gravity="bottom" /> |
256 | 36 |
<Button android:id="@+id/create_account_login_button" |
506
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
37 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
38 |
android:text="@string/button_create_login_account" android:textStyle="bold" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
39 |
android:textColor="#333333" android:textSize="18sp" |
8e33a89c21a3
Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
489
diff
changeset
|
40 |
android:layout_gravity="bottom" /> |
212 | 41 |
</LinearLayout> |
42 |
</ScrollView> |