手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >Android用户注册界面
Android用户注册界面
摘要:推荐阅读:Android如何通过手机获取验证码来完成注册功能先给大家展示下界面效果图,感觉满意,请参考实现代码。Main.xml源码到此关于...

推荐阅读:Android如何通过手机获取验证码来完成注册功能

先给大家展示下界面效果图,感觉满意,请参考实现代码。

Android用户注册界面1

Main.xml源码

<"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" > <> <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:hint="手机号" 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> <> <TableRow> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="注册" /> </TableRow> </TableLayout>

到此关于Android用户注册界面的全部代码就给大家介绍完了,代码有bug欢迎提出,小编会及时和大家联系,共同学习进步!

【Android用户注册界面】相关文章:

Android 模拟器和PC物理键盘映射

Android用户界面开发之:TextView的使用实例

android WakeLock使用方法代码实例

Android上使用jspf插件框架的方法

android生命周期深入分析(二)

Android中使用sax解析xml文件的方法

Android控件系列之Shape使用方法

Android adb的常用命令

Android 使用新浪微博SSO授权

Android中利用App实现消息推送机制的代码

精品推荐
分类导航