android布局实例代码

来源:技术人生 责任编辑:栏目编辑 发表时间:2013-07-01 22:10 点击:
<?xml version="1.0" encoding="utf-8"?>
<!--
layout_width - 宽。fill_parent: 宽度跟着父元素走;wrap_content: 宽度跟着本身的内容走;直接指定一个 px 值来设置宽
layout_height - 高。fill_parent: 高度跟着父元素走;wrap_content: 高度跟着本身的内容走;直接指定一个 px 值来设置高
-->
<!--
LinearLayout - 线形布局。
 orientation - 容器内元素的排列方式。
 vertical: 子元素们垂直排列;
 horizontal: 子元素们水平排列
 gravity - 内容的排列形式。
 常用的有 top, bottom, left, right, center 等,详见文档
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:gravity="right"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <!--
 FrameLayout - 层叠式布局。以左上角为起点,将  FrameLayout 内的元素一层覆盖一层地显示
 -->
 <FrameLayout android:layout_height="wrap_content"
  android:layout_width="fill_parent">
  
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="FrameLayout">
   
  </TextView>
  
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="    Frame Layout ">
   
  </TextView>
 </FrameLayout>
 <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="@string/hello" />
 <!--
 TableLayout - 表格式布局。 
  TableRow - 表格内的行,行内每一个元素算作一列
  collapseColumns - 设置 TableLayout 内的 TableRow 中需要隐藏的列的列索引,多个用“,”隔开
  stretchColumns - 设置 TableLayout 内的 TableRow 中需要拉伸(该列会拉伸到所有可用空间)的列的列索引,多个用“,”隔开
  shrinkColumns - 设置 TableLayout 内的 TableRow 中需要收缩(为了使其他列不会被挤到屏幕外,此列会自动收缩)的列的列索引,多个用“,”隔开
 -->
 <TableLayout android:id="@+id/TableLayout01"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:collapseColumns="1">
  
  
  <TableRow android:id="@+id/TableRow01"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content">
   
   <TextView android:layout_width="wrap_content"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:text="行1列1" />
    
   <TextView android:layout_width="wrap_content"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:text="行1列2" />
    
   <TextView android:layout_width="wrap_content"
    android:layout_weight="1" android:layout_height="wrap_content"
    android:text="行1列3" />
  </TableRow>
  
  <TableRow android:id="@+id/TableRow01"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content">
   
   <TextView android:layout_width="wrap_content"
    android:layout_hei

    相关新闻>>

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

      推荐热点

      • 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