此例摘自《疯狂Java讲义》

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"     android:orientation="vertical"    android:stretchColumns="1">        <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"            />        <!-- android:inputType="numberPassword" 只接受数字密码 -->        <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"            />        <!-- android:inputType="number" 数值输入 -->        <EditText             android:layout_width="match_parent"            android:layout_height="wrap_content"            android:inputType="number"            />    </TableRow>        <TableRow >        <TextView             android:layout_width="match_parent"            android:layout_height="wrap_content"            android:text="生日"            android:textSize="16sp"            />        <!-- android:inputType="date" 日期输入 -->        <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:hint="请填写您的电话号码"            android:selectAllOnFocus="true"            android:inputType="phone"            />    </TableRow>        <Button         android:layout_width="wrap_content"        android:layout_height="wrap_content"         android:text="注册"        /></TableLayout>
结果如下:

更多相关文章

  1. Android登录界面设计1(纯java)
  2. Android(安卓)WebView设置代理及账号密码
  3. Android(安卓)技术专题系列之七 -- 输入法 框架
  4. android键盘遮挡webview的输入框问题
  5. Android扫描wifi二维码自动连接wifi
  6. Android电子牌外接USB读卡器读取内容模拟键盘事件
  7. android手势密码
  8. Android:自定义输入法(输入密码时防止第三方窃取)
  9. Android客户端请求服务端资源(HttpURLConnection和输入流实现)

随机推荐

  1. Android 浏览器CSS 居中
  2. 推荐文章1
  3. Android之解析Json数据
  4. Android 项目接入Flutter
  5. Android Studio NDk调试(基于gradle-expe
  6. Android 4.0为Launcher主界面所有应用程
  7. 72、android状态栏一体化,状态栏改变颜色
  8. Android:Android(安卓)Studio 优化
  9. Android OPenCV 环境配置
  10. Android建立对话框基本的几种方法