`
javalover00000
  • 浏览: 100661 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

android各种布局layout

阅读更多

LinearLayout - 线形布局。
    orientation - 容器内元素的排列方式。
vertical: 子元素们垂直排列;horizontal: 子元素们水平排列
    gravity - 内容的排列形式。常用的有 top, bottom, left, right, center 等

 

FrameLayout - 层叠式布局。以左上角为起点,将  FrameLayout 内的元素一层覆盖一层地显示

TableLayout - 表格式布局。
        TableRow - 表格内的行,行内每一个元素算作一列
        collapseColumns - 设置 TableLayout 内的 TableRow 中需要隐藏的列的列索引,多个用“,”隔开
        stretchColumns - 设置 TableLayout 内的 TableRow 中需要拉伸(该列会拉伸到所有可用空间)的列的列索引,多个用“,”隔开
        shrinkColumns - 设置 TableLayout 内的 TableRow 中需要收缩(为了使其他列不会被挤到屏幕外,此列会自动收缩)的列的列索引,多个用“,”隔开

 RelativeLayout - 相对定位布局。
        layout_centerInParent - 将当前元素放置到其容器内的水平方向和垂直方向的中央位置(类似的属性有 :layout_centerHorizontal, layout_alignParentLeft 等)
        layout_marginLeft - 设置当前元素相对于其容器的左侧边缘的距离
        layout_below - 放置当前元素到指定的元素的下面
        layout_alignRight - 当前元素与指定的元素右对齐

 

layout_width - 宽。

fill_parent: 宽度跟着父元素走;

wrap_content: 宽度跟着本身的内容走;

直接指定一个 px 值来设置宽


layout_height 
- 高。

fill_parent: 高度跟着父元素走;

wrap_content: 高度跟着本身的内容走;

直接指定一个 px 值来设置高

 

 <?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_height
="wrap_content" android:text="行2列1" />
        
</TableRow>
    
</TableLayout>

    
<!--
    AbsoluteLayout - 绝对定位布局。
        layout_x - x 坐标。以左上角为顶点
        layout_y - y 坐标。以左上角为顶点
    
-->
    
<AbsoluteLayout android:layout_height="wrap_content"
        android:layout_width
="fill_parent">
        
<TextView android:layout_width="wrap_content"
            android:layout_height
="wrap_content" android:text="AbsoluteLayout"
            android:layout_x
="100px" 
            android:layout_y
="100px" />
    
</AbsoluteLayout>

    
<!--
    RelativeLayout - 相对定位布局。
        layout_centerInParent - 将当前元素放置到其容器内的水平方向和垂直方向的中央位置(类似的属性有 :layout_centerHorizontal, layout_alignParentLeft 等)
        layout_marginLeft - 设置当前元素相对于其容器的左侧边缘的距离
        layout_below - 放置当前元素到指定的元素的下面
        layout_alignRight - 当前元素与指定的元素右对齐
    
-->
    
<RelativeLayout android:id="@+id/RelativeLayout01"
        android:layout_width
="fill_parent" android:layout_height="fill_parent">
        
<TextView android:layout_width="wrap_content" android:id="@+id/abc"
            android:layout_height
="wrap_content" android:text="centerInParent=true"
            android:layout_centerInParent
="true" />
        
<TextView android:layout_width="wrap_content"
            android:layout_height
="wrap_content" android:text="marginLeft=20px"
            android:layout_marginLeft
="20px" />
        
<TextView android:layout_width="wrap_content"
            android:layout_height
="wrap_content" android:text="xxx"
            android:layout_below
="@id/abc" android:layout_alignRight="@id/abc" />
    
</RelativeLayout>

</LinearLayout>

转自:http://blog.sina.com.cn/s/blog_3fe740f40100nzs7.html

分享到:
评论

相关推荐

    Android 五种Layout 布局

    在Android开发中,布局(Layout)是构建用户界面的基础元素,它定义了屏幕上各个组件的排列方式和相互关系。本文将深入探讨Android的五种主要布局:LinearLayout、RelativeLayout、FrameLayout、GridLayout以及...

    Android_layout.rar_android_android 布局_layout

    这个"Android_layout.rar"压缩包文件包含了关于Android布局属性的详细资料,尤其是对开发者来说,掌握这些属性对于优化UI设计至关重要。 1. **LinearLayout**:线性布局是最基础的布局,它可以将子视图按照垂直或...

    Android Layout样式布局

    #### 二、Android布局基本属性 在开始介绍具体的布局类型之前,我们先了解一些通用的属性,这些属性对于所有的布局都是适用的。 - **android:id** - 用途:为控件指定唯一的ID,便于在代码中引用。 - 示例:`...

    Android自定义Layout布局

    本篇文章将深入探讨如何在Android中进行自定义Layout布局的开发。 首先,创建自定义Layout首先要创建一个新的Java类,继承自`ViewGroup`或`LinearLayout`等现有布局。选择`ViewGroup`是因为它是所有布局的基础类,...

    Android中UI布局Layout

    在Android应用开发中,UI设计是至关重要的,而布局(Layout)则是构建用户界面的核心元素。布局决定了应用程序中各个组件的排列方式和相互关系。以下是关于Android中几种主要布局的详细解析: 1. **线性布局...

    Android 相对布局实例

    - `android:layout_alignParentTop="true"`:将视图放置在父布局的顶部。 - `android:layout_alignParentBottom="true"`:将视图放置在父布局的底部。 - `android:layout_alignParentLeft="true"`:将视图放置在...

    android的layout布局种类

    Android 布局种类详解 Android 布局种类是 Android 应用程序中不可或缺的一部分,它们决定了应用程序的用户界面和用户体验。Android 提供了多种布局种类,每种布局种类都有其特点和用途。在这篇文章中,我们将详细...

    android 自动换行 layout

    标题提到的"android 自动换行 layout"是指一种能够自动换行显示子视图的布局,它适用于创建标签展示,尤其在需要显示多行标签且数量不确定的情况下,这种布局能够提供优秀的可读性和用户体验。在描述中提到,该布局...

    AndroidXML布局属性详解

    Android XML 布局属性详解 Android XML 布局属性是 Android 应用程序中最基本也是最重要的一部分。它负责控制屏幕上的各种控件的布局和排列。 Android XML 布局属性可以分为三类:第一类是属性值为 true 或 false ...

    Layout_table android网格布局

    在Android开发中,布局管理是构建用户界面的关键部分。`Layout_table`,即TableLayout,是一种特殊的布局方式,它模仿了HTML中的表格结构,允许开发者以行和列的形式组织控件,非常适合创建网格状的视图。对于新手来...

    Android布局文件layout.xml的一些属性值

    Android布局文件layout.xml的一些属性值 android开发必看文档

    android的layout布局详解

    主要是针对android初学者对于android的layout布局不是很清楚的人

    android 各种Layout用到的一些重要的属性

    ### Android各种Layout的重要属性 #### 一、第一类:布尔属性值 ...以上就是Android布局中常用的几种类型的属性以及它们的具体用途。合理利用这些属性可以帮助开发者创建出更加灵活多变、美观实用的应用界面。

    Android页面布局总结

    ### Android页面布局详解 在Android开发中,布局是构建用户界面的基础。良好的布局不仅能够提升应用的美观度,还能提高用户体验。本文将详细介绍Android中三种常见的布局方式:LinearLayout(线性布局)、...

    ex07_layout.rar_android_layout布局

    在Android开发中,布局(Layout)是构建用户界面的核心元素,它定义了屏幕上各个...通过这个"ex07_layout"工程,你不仅可以学习到各种布局的用法,还可以实践如何根据需求选择和组合布局,提升自己的Android开发技能。

    android的layout布局种类.pdf

    Android Layout 是 Android 应用程序的用户界面布局方式,总共有五种基本布局:LinearLayout、AbsoluteLayout、RelativeLayout、FrameLayout、TableLayout。每种布局都有其特点和应用场景,本文将对每种布局进行详细...

    Android xml布局文件生成工具

    然而,需要注意的是,DroidDraw已不再维护,对于最新的Android SDK版本可能不完全兼容,现在的开发者更多地转向使用Android Studio内置的布局编辑器,如布局设计器(Layout Designer)和实时布局预览(Live Layout ...

    android排版布局属性

    - **android:layout_marginTop**、**android:layout_marginLeft**、**android:layout_marginRight**、**android:layout_marginBottom**:分别设置控件顶部、左边、右边、底部的边距,提供更细致的布局控制。...

    android自定义圆形布局CircleLayout

    在Android开发中,自定义布局是提升应用独特性和用户体验的重要手段。`CircleLayout`就是一种特殊的自定义布局,它使得内部的子视图按照圆形排列,增强了界面的视觉效果。本篇文章将深入探讨如何实现这样一个自定义...

    认识Android布局文件

    【Android布局文件详解】 在Android应用开发中,界面设计是一个至关重要的环节,而XML格式的布局文件正是构建这些界面的核心工具。布局文件定义了应用程序界面的结构,包括它所包含的控件、控件间的相对位置以及...

Global site tag (gtag.js) - Google Analytics