直接运行在layout下的main.xml文件即可
<?xml version="1.0" encoding="utf-8"?> <tablelayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:stretchcolumns="1"> <tablerow> <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="用户名"> <edittext android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="请填写登录帐号" android:selectallonfocus="true"> </edittext></textview></tablerow> <tablerow> <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="密码"> <edittext android:layout_width="fill_parent" android:layout_height="wrap_content" android:inputtype="numberPassword"> </edittext></textview></tablerow> <tablerow> <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="生日"> <edittext android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="请填写日期" android:inputtype="date"> </edittext></textview></tablerow> <tablerow> <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="电话号码"> <edittext android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="请填写你的电话号码" android:selectallonfocus="true" android:inputtype="phone"> </edittext></textview></tablerow> </tablelayout>