res/layout/create_account.xml
author Jean-Manuel ¨dasilvj¨ Da Silva
Wed, 11 Nov 2009 17:58:26 +0100
changeset 501 d52918cfaba7
parent 489 77c573c8217e
child 506 8e33a89c21a3
permissions -rw-r--r--
Corrections des problèmes de l´activité Chat. + A présent, lorsque l´on recoit une notification, on peut se rendre sur l´activité Chat pour voir le nouveau message. + Ajout de l´affichages des derniers messages envoyés entre les contacts. (l´historique courant, pas l´historique après fermeture de BEEM) + Léger nettoyage dans la class BeemChatManager

<?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:inputType="textEmailAddress" android:imeOptions="actionNext"
			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:inputType="textPassword" android:imeOptions="actionNext"
			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:inputType="textPassword" android:imeOptions="actionNext"
			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" />
		<Button android:id="@+id/create_account_login_button"
			android:layout_width="fill_parent" android:layout_height="fill_parent"
			android:text="@string/button_create_login_account" />
	</LinearLayout>
</ScrollView>