Android registration page, android page
Android registration page
Page
Main. xml source code
<? Xml version ="1.0"Encoding ="UTF-8"?>
<TableLayout xmlns: android =Http://schemas.android.com/apk/res/android"
Android: layout_width ="Match_parent"
Android: layout_height ="Match_parent"
Android: stretchColumns ="1"
Android: background ="@ Drawable/bluesky"
>
<! -- Account -->
<TableRow>
<TextView
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: text ="Account :"
Android: textSize ="16sp"
/>
<EditText
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: hint ="Mobile phone number"
Android: selectAllOnFocus ="True"
/>
</TableRow>
<! -- Password -->
<TableRow>
<TextView
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: text ="Password :"
Android: textSize ="16sp"
/>
<EditText
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: inputType ="NumberPassword"
/>
</TableRow>
<! -- Birthday -->
<TableRow>
<TextView
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: text ="Birthday :"
Android: textSize ="16sp"
/>
<EditText
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: inputType ="Date"
/>
</TableRow>
<! -- Address -->
<TableRow>
<TextView
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: text ="Address :"
Android: textSize ="16sp"
/>
<EditText
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: inputType ="TextPostalAddress"
/>
</TableRow>
<! -- Email -->
<TableRow>
<TextView
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: text ="Email :"
Android: textSize ="16sp"
/>
<EditText
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: inputType ="TextEmailAddress"
/>
</TableRow>
<! -- Register -->
<TableRow>
<Button
Android: layout_width ="Match_parent"
Android: layout_height ="Wrap_content"
Android: text ="Register"
/>
</TableRow>
</TableLayout>