【android的布局练习】厌伴老儒烹瓠叶,强随举子踏槐花。这篇文章主要讲述android的布局练习相关的知识,希望能为你提供帮助。
<
TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="1"
tools:context=".MainActivity" >
<
TableRow>
<
TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="@string/username" />
<
EditText
android:selectAllOnFocus="true"
android:text="@string/username1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<
/TableRow>
<
!-- android的密码 -->
<
TableRow>
<
TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="@string/password" />
<
EditText
android:selectAllOnFocus="true"
android:inputType="numberPassword"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<
/TableRow>
<
!-- android的年龄-->
<
TableRow>
<
TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="@string/age" />
<
EditText
android:selectAllOnFocus="true"
android:inputType="number"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<
/TableRow>
<
!-- android的生日 -->
<
TableRow>
<
TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="@string/age" />
<
EditText
android:selectAllOnFocus="true"
android:inputType="date"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<
/TableRow>
<
!-- android的电话 -->
<
TableRow>
<
TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="@string/phone" />
<
EditText
android:selectAllOnFocus="true"
android:text="@string/phone1"
android:inputType="phone"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<
/TableRow>
<
Button
android:id="@+id/submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="@string/submit"
/>
<
/TableLayout>
推荐阅读
- Android 设置图片透明度
- Android Studio第十四期 - Swipebacklayout最新版
- Android 仿微信朋友圈点击图片变暗
- Android 设置alpha值来制作透明与渐变效果的实例
- AndroidStudio 混淆打包
- android经典实战项目视频教程下载
- Android NDK构建资料
- Android应用开发中出现appcompat-v7错误
- Android手机开发者模式设置