| author | Vincent V. <marseille@beem-project.com> | 
| Mon, 16 Jul 2012 15:43:55 +0200 | |
| changeset 946 | 7caab0161cf9 | 
| parent 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"  | 
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
767 
diff
changeset
 | 
6  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
| 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"  | 
| 
767
 
74a987c3efb5
Add properties needed for accessibility.
 
Nolan Darilek <nolan@thewordnerd.info> 
parents: 
506 
diff
changeset
 | 
14  | 
android:singleLine="true"  | 
| 
 
74a987c3efb5
Add properties needed for accessibility.
 
Nolan Darilek <nolan@thewordnerd.info> 
parents: 
506 
diff
changeset
 | 
15  | 
android:contentDescription="@string/create_account_username"/>  | 
| 256 | 16  | 
<TextView android:id="@+id/create_account_label_password"  | 
17  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
|
18  | 
android:text="@string/create_account_password" style="@style/Label" />  | 
|
| 212 | 19  | 
<EditText android:id="@+id/create_account_password"  | 
| 256 | 20  | 
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
 | 
21  | 
android:inputType="textPassword" android:imeOptions="actionNext"  | 
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
767 
diff
changeset
 | 
22  | 
android:singleLine="true"  | 
| 
767
 
74a987c3efb5
Add properties needed for accessibility.
 
Nolan Darilek <nolan@thewordnerd.info> 
parents: 
506 
diff
changeset
 | 
23  | 
android:contentDescription="@string/create_account_password"/>  | 
| 256 | 24  | 
<TextView android:id="@+id/create_account_label_confirm_password"  | 
25  | 
android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
|
26  | 
android:text="@string/create_account_confirm_password" style="@style/Label" />  | 
|
| 212 | 27  | 
<EditText android:id="@+id/create_account_confirm_password"  | 
| 256 | 28  | 
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
 | 
29  | 
android:inputType="textPassword" android:imeOptions="actionNext"  | 
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
767 
diff
changeset
 | 
30  | 
android:singleLine="true"  | 
| 
767
 
74a987c3efb5
Add properties needed for accessibility.
 
Nolan Darilek <nolan@thewordnerd.info> 
parents: 
506 
diff
changeset
 | 
31  | 
android:contentDescription="@string/create_account_confirm_password"/>  | 
| 
946
 
7caab0161cf9
Android lint parser correction
 
Vincent V. <marseille@beem-project.com> 
parents: 
767 
diff
changeset
 | 
32  | 
<View android:layout_width="fill_parent" android:layout_height="0dip"  | 
| 
506
 
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:layout_weight="1" android:layout_marginBottom="18dp" />  | 
| 212 | 34  | 
<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
 | 
35  | 
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
 | 
36  | 
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
 | 
37  | 
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
 | 
38  | 
android:layout_gravity="bottom" />  | 
| 256 | 39  | 
<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
 | 
40  | 
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
 | 
41  | 
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
 | 
42  | 
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
 | 
43  | 
android:layout_gravity="bottom" />  | 
| 212 | 44  | 
</LinearLayout>  | 
45  | 
</ScrollView>  |