码迷,mamicode.com
首页 > 移动开发 > 详细

android的布局练习

时间:2016-09-26 18:11:21      阅读:177      评论:0      收藏:0      [点我收藏+]

标签: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的布局

原文地址:http://11657004.blog.51cto.com/11647004/1856670

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!