亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android用戶(hù)注冊(cè)界面

 更新時(shí)間:2016年03月30日 11:40:54   作者:Dreamer_lwp  
這篇文章主要介紹了Android用戶(hù)注冊(cè)界面 的相關(guān)資料,需要的朋友可以參考下

推薦閱讀:Android如何通過(guò)手機(jī)獲取驗(yàn)證碼來(lái)完成注冊(cè)功能

先給大家展示下界面效果圖,感覺(jué)滿(mǎn)意,請(qǐng)參考實(shí)現(xiàn)代碼。

Main.xml源碼

<?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"
>
<!-- 賬號(hào) -->
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="賬號(hào):"
android:textSize="16sp"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="手機(jī)號(hào)"
android:selectAllOnFocus="true"
/>
</TableRow>
<!-- 密碼 -->
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="密碼:"
android:textSize="16sp"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="numberPassword"
/>
</TableRow>
<!-- 生日 -->
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="生日:"
android:textSize="16sp"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="date"
/>
</TableRow>
<!-- 住址 -->
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="住址:"
android:textSize="16sp"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPostalAddress"
/>
</TableRow>
<!-- 電子郵箱 -->
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="電子郵箱:"
android:textSize="16sp"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
/>
</TableRow>
<!-- 注冊(cè) -->
<TableRow>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="注冊(cè)"
/>
</TableRow>
</TableLayout>

到此關(guān)于Android用戶(hù)注冊(cè)界面的全部代碼就給大家介紹完了,代碼有bug歡迎提出,小編會(huì)及時(shí)和大家聯(lián)系,共同學(xué)習(xí)進(jìn)步!

相關(guān)文章

最新評(píng)論