Android常用布局范例

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 18:43 点击:

在Android开发中UI设计十分重要,当用户使用一个软件时,最先感受到的不是这款软件的功能是否强大,而是界面设计是否精致,用户体验是否良好。也可以这样说,有一个好的界面设计去吸引用户的使用,才能让更多的用户体验到软件功能的强大。 下面着重讲一下Android中几种常用布局的使用:

首先,需要说明的是,各个布局既可以单独使用,也可以嵌套使用,读者在实际应用中应灵活掌握。

1 LinearLayout 是一种Android中最常用的布局之一,它将自己包含的子元素按照一个方向排列。方向的设置通过Android:orientation=”vertical”(竖直)或者Android:orientation=”horizontal”(水平)来实现。

 

 

代码如下:

 <LinearLayout android:orientation="vertical" android:layout_width="fill_parent"  android:layout_height="fill_parent">    

    <Button android:id="@+id/bt_1" android:layout_width="fill_parent" 

    android:layout_height="wrap_content"  android:text="用来验证RelativeLayout"

    />

    <Button android:id="@+id/bt_2" android:layout_width="fill_parent" 

    android:layout_height="wrap_content" android:text="用来验证TableLayout"

    />

    <Button android:id="@+id/bt_3" android:layout_width="fill_parent" 

    android:layout_height="wrap_content" android:text="用来验证ListView"

    />  

    <Button android:id="@+id/bt_4" android:layout_width="fill_parent" 

    android:layout_height="wrap_content" android:text="用来验证FrameLayout"

    />

</LinearLayout>

 

2 FrameLayout对象好比一块在屏幕上提前预定好的空白区域,可以将一些元素填充在里面,如图片。所有元素都被放置在FrameLayout区域的最左上区域,而且无法为这些元素制指定一个确切的位置,若有多个元素,那么后面的元素会重叠显示在前一个元素上。

 

代码如下:

<FrameLayout

  xmlns:android="http://schemas.android.com/apk/res/android"

  android:layout_width="match_parent" android:layout_height="match_parent">

  <ImageView  android:id="@+id/photo"

       android:src="@drawable/img" android:layout_width="wrap_content"

       android:layout_height="wrap_content"/>

</FrameLayout>

 

3 RelativeLayout是一种相对布局,控件的位置是按照相对位置来计算的,后一个控件在什么位置依赖于前一个控件的基本位置。是布局最常用,也是最灵活的一种布局。

 

 

 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent" android:layout_height="match_parent"

    android:padding="10dip">    

    <TextView android:id="@+id/label" android:layout_width="fill_parent"

        android:layout_height="wrap_content" android:text="请输入用户名"/>

    <EditText android:id="@+id/entry" android:layout_width="fill_parent"

         android:layout_height="wrap_conten

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Android 完全退出程序
      • 原创:Android应用开发-Andorid歌词秀,含源码
      • android 屏幕保护
      • Android手机软件汉化教程---第四课 dex文件汉化
      • 众多Android 开源项目推荐,给力工作给力学习
      • Android Audio代码分析4
      • Android得到已安装的应用程序信息!
      • Android开发者指南(29) —— USB Host and Accessory
      • Android成长的幕后推手:工程师鲁宾
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1