res/layout/create_account.xml
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--
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.

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical"
   	android:layout_width="fill_parent"
    android:layout_height="fill_parent">
	<LinearLayout
		android:layout_width="fill_parent"
		android:layout_height="fill_parent"
		android:orientation="vertical"
		android:padding="10dip">
    	<TextView android:id="@+id/create_account_label_username"
    		android:layout_width="fill_parent"
    		android:layout_height="wrap_content"
  			android:text="@string/create_account_username"
    		style="@style/Label" />
		<EditText android:id="@+id/create_account_username"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:singleLine="true" />
    	<TextView android:id="@+id/create_account_label_password"
    		android:layout_width="fill_parent"
    		android:layout_height="wrap_content"
    		android:text="@string/create_account_password"
    		style="@style/Label" />
		<EditText android:id="@+id/create_account_password"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:password="true"
			android:singleLine="true" />
    	<TextView android:id="@+id/create_account_label_confirm_password"
    		android:layout_width="fill_parent"
    		android:layout_height="wrap_content"
    		android:text="@string/create_account_confirm_password"
    		style="@style/Label" />
		<EditText android:id="@+id/create_account_confirm_password"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:password="true"
			android:singleLine="true" />
    	<View
    		android:layout_height="21dp"
    		android:layout_width="fill_parent" />
		<Button android:id="@+id/create_account_button"
			android:layout_width="fill_parent"
			android:layout_height="fill_parent"
			android:text="@string/button_create_account" />
	</LinearLayout>
</ScrollView>