原创 Android笔记7-编辑框之登录界面

2014-7-29 20:28 1418 18 18 分类: 软件与OS 文集: Android
做一个登录界面来熟悉编辑框的使用。
XML文件代码如下:
 
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:stretchColumns="1"   //设置可伸展的列。该列可以向行方向伸展,最多可占据一整行。
//android:shrinkColumns     设置可收缩的列。当该列子控件的内容太多,已经挤满所在行,那么该子控件的内容将往列方向显示。

android:stretchColumns = "指定的列" ------->以第0行为序,尽量把指定的列填充空白部分

设置stretchColumns=0,则结果如下图,第0列被尽量填充

122201.jpg

设置stretchColumns=1,则结果如下图,第1列被尽量填充

122202.jpg
 >
 //TableRow就是一个表格行,每次添加一个表格行,就是以开始,以结束
 android:layout_width="fill_parent"   //宽度布满整个高度
 android:layout_height="wrap_content"
 android:text="用户名:"
 android:textSize="16sp" //设置文字大小,推荐单位是sp, 一般14sp就是小四。。
 />
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:hint="请填写登录帐号"       //设置EditText为空时输入框内的提示信息
 android:selectAllOnFocus="true"  //希望在获得焦点时选择内容,也就是默认全部选中
 />
 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:text="密码:"                       
 android:textSize="16sp"
 />
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:inputType="numberPassword"
 />
 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:text="年龄:"
 android:textSize="16sp"
 />
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:inputType="number"
 />
 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:text="生日:"
 android:textSize="16sp"
 />
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:inputType="date"
 />
 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:text="电话号码:"
 android:textSize="16sp"
 />
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:hint="请填写您的电话号码"
 android:selectAllOnFocus="true"
 android:inputType="phone"
 />
 
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="注册"
 />
 
 
 
 
=================================================
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:stretchColumns="1">
 
   
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="用户名"
        android:textSize="16sp"/>
   
   
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="请填写登录账号"
        android:selectAllOnFocus="true"/>
 
     
   
     
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="密码"
        android:textSize="15sp" />
     
 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:inputType="numberPassword" />
 
   
 
      android:layout_height="wrap_content"
      android:layout_width="wrap_content"
      android:text="注册"/>
 
 
 
最后结果如下图所示:
122203.jpg
<>
<>
<>
<>
<>
<>
<>
<>
<>
<>
<>
<>
<>
<>
<>
<>
PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
我要评论
0
18
关闭 站长推荐上一条 /3 下一条