res/layout/create_account.xml
author nikita@nikita-laptop
Mon, 15 Feb 2010 22:37:32 +0100
changeset 671 25f6fded204a
parent 506 8e33a89c21a3
child 767 74a987c3efb5
permissions -rw-r--r--
i have temporarly deleted jingle features from the trunk, report you to http://beem-project.com/hg/beem-audio/ if you are interested

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="fill_parent" android:layout_height="fill_parent"
	android:orientation="vertical">
	<LinearLayout android:orientation="vertical"
		android:layout_width="fill_parent" android:layout_height="fill_parent"
		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_width="fill_parent" android:layout_height="wrap_content"
			android:layout_weight="1" android:layout_marginBottom="18dp" />
		<Button android:id="@+id/create_account_button"
			android:layout_width="fill_parent" android:layout_height="wrap_content"
			android:text="@string/button_create_account" android:textStyle="bold"
			android:textColor="#333333" android:textSize="18sp"
			android:layout_gravity="bottom" />
		<Button android:id="@+id/create_account_login_button"
			android:layout_width="fill_parent" android:layout_height="wrap_content"
			android:text="@string/button_create_login_account" android:textStyle="bold"
			android:textColor="#333333" android:textSize="18sp"
			android:layout_gravity="bottom" />
	</LinearLayout>
</ScrollView>