0% found this document useful (0 votes)
23 views1 page

Android Registration Form XML Code

The document contains XML code for a registration form layout with fields for full name, email, username, password and a register button.

Uploaded by

Nisha Parchande
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views1 page

Android Registration Form XML Code

The document contains XML code for a registration form layout with fields for full name, email, username, password and a register button.

Uploaded by

Nisha Parchande
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Registration Form

XML CODE:

<?xml version="1.0" encoding="utf-8"?> <EditText

<LinearLayout android:id="@+id/editTextPassword"

xmlns:android="[Link] android:layout_width="match_parent"
pk/res/android"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:hint="Password"
android:layout_height="match_parent"
android:inputType="textPassword" />
android:orientation="vertical"
<Button
android:padding="16dp">
android:id="@+id/buttonRegister"
<EditText
android:layout_width="match_parent"
android:id="@+id/editTextFullName"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="Register" />
android:layout_height="wrap_content"
</LinearLayout>
android:hint="Full Name"
OUTPUT:
android:inputType="text" />

<EditText

android:id="@+id/editTextEmail"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:hint="Email"

android:inputType="textEmailAddress" />

<EditText

android:id="@+id/editTextUsername"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:hint="Username"

android:inputType="text" />

You might also like