`

LinearLayout中android:layout_weight的作用

阅读更多
一直不明白android:layout_weight的作用,今天终于弄明白了。
转自:http://www.cnblogs.com/fly3q/archive/2010/03/24/1693977.html
layout_weight 用于给一个线性布局中的诸多视图的重要度赋值。
     所有的视图都有一个layout_weight值,默认为零,意思是需要显示
     多大的视图就占据多大的屏幕空 间。若赋一个高于零的值,则将父视
     图中的可用空间分割,分割大小具体取决于每一个视图的layout_weight
       值以及该值在当前屏幕布局的整体 layout_weight值和在其它视图屏幕布
     局的layout_weight值中所占的比率而定。
     举个例子:比如说我们在 水平方向上有一个文本标签和两个文本编辑元素。
    该文本标签并无指定layout_weight值,所以它将占据需要提供的最少空间。
    如果两个文本编辑元素每一个的layout_weight值都设置为1,则两者平分
    在父视图布局剩余的宽度(因为我们声明这两者的重要度相等)。如果两个 
   文本编辑元素其中第一个的layout_weight值设置为1,而第二个的设置为2,
   则剩余空间的三分之一分给第一个,三分之二分给第二个。
看例子:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
  <LinearLayout
      android:orientation="horizontal"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:layout_weight="1">
      <TextView
          android:text="redwwwwwww"
          android:gravity="center_horizontal"
          android:background="#aa0000"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:layout_weight="1"/>
      <TextView
          android:text="green"
          android:gravity="center_horizontal"
          android:background="#00aa00"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:layout_weight="2"/>
      <TextView
          android:text="blue"
          android:gravity="center_horizontal"
          android:background="#0000aa"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:layout_weight="3"/>
      <TextView
          android:text="yellow"
          android:gravity="center_horizontal"
          android:background="#aaaa00"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:layout_weight="4"/>
  </LinearLayout>
</LinearLayout>

附件为运行的效果:


更新于2012-10-29:
之前学得不够深,所以上面只是表面的解析,更深的可以读:http://www.chess-ix.com/2012/01/17/the-use-of-layout_weight-with-android-layouts/http://www.cnblogs.com/angeldevil/archive/2012/html04/08/2437747
  • 大小: 3.7 KB
分享到:
评论
9 楼 追求幸福 2012-10-29  
a455642158 写道
整体竖直方向是这个分配率 内部进去就相反了……表面现象解释。

嗯,是啊!学艺不精!在不断地改正:这里有更好的解释:http://www.cnblogs.com/angeldevil/archive/2012/04/08/2437747.html[/url]和[url]http://www.chess-ix.com/2012/01/17/the-use-of-layout_weight-with-android-layouts/
8 楼 a455642158 2012-08-29  
整体竖直方向是这个分配率 内部进去就相反了……表面现象解释。
7 楼 z576250965 2012-03-22  
既然和android:layout_width="wrap_content"有关,那android:weight不就可有可无了吗?
6 楼 追求幸福 2012-01-04  
sunjiesh 写道
为什么我得到的是相反的答案呢?我已经确保使TEXT中的内容相同,但是发现效果是反而是android:layout_weight数值大的反而占据的空间大呢?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

   <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="3"
            android:background="#aa0000"
            android:gravity="center_horizontal"
            android:text="XXXX" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#00aa00"
            android:gravity="center_horizontal"
            android:text="XXXX" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#0000aa"
            android:gravity="center_horizontal"
            android:text="XXXX" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="3"
            android:background="#aaaa00"
            android:gravity="center_horizontal"
            android:text="XXXX" />

</LinearLayout>




大哥你的答案是对的!
5 楼 sunjiesh 2012-01-02  
为什么我得到的是相反的答案呢?我已经确保使TEXT中的内容相同,但是发现效果是反而是android:layout_weight数值大的反而占据的空间大呢?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

   <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="3"
            android:background="#aa0000"
            android:gravity="center_horizontal"
            android:text="XXXX" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#00aa00"
            android:gravity="center_horizontal"
            android:text="XXXX" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#0000aa"
            android:gravity="center_horizontal"
            android:text="XXXX" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="3"
            android:background="#aaaa00"
            android:gravity="center_horizontal"
            android:text="XXXX" />

</LinearLayout>


4 楼 追求幸福 2011-07-04  
liuwanwei 写道
图中的水平宽度比率是4:3:2:1吗?

按道理分析是会是1:2:3:4,但在实际情况中要考虑到其他的因素,比如我那实例代码中的TextView的宽度会受其text的字数影响的,因为有android:layout_width="wrap_content"这一句话。所以你可以看到我附件里面的那张效果图就明白了。
3 楼 追求幸福 2011-07-04  
liang86liang 写道
跑跑试试,实践出真知么!!哈哈

这位老兄说得对,一定要自己试试才知道。
2 楼 liang86liang 2011-07-01  
跑跑试试,实践出真知么!!哈哈
1 楼 liuwanwei 2011-06-30  
图中的水平宽度比率是4:3:2:1吗?

相关推荐

    2011.10.13(4)——— android android:layout_weight

    在Android开发中,`android:layout_weight`是一个非常重要的属性,尤其在布局管理器中,如LinearLayout。这个属性主要用于在有限的空间内分配组件的大小,根据权重比例来决定每个子视图占据的屏幕空间。本篇文章将...

    Android中的android:layout_weight使用详解

    在Android开发中,`android:layout_weight`是一个关键属性,特别是在使用`LinearLayout`进行界面布局时。`layout_weight`用于指定一个子视图在父视图中的权重,它决定了控件如何分配额外的空间,尤其是在视图的尺寸...

    android_QQ_例子

    用Eclipse加载项目工程 &lt;LinearLayout xmlns:android=... android:layout_weight="0.66" android:background="@drawable/blue_bg" android:orientation="vertical" &gt; android:layout

    Android的Layout完全介绍

    在Android开发中,Layout是构建用户界面的关键组成部分,用于组织和定位应用中的各种View组件。本文将详细介绍几种主要的Layout类型及其特点。 1. FrameLayout FrameLayout是最基础的布局方式,它将所有子元素置于...

    Android Layout样式布局

    在Android应用开发中,界面设计是非常重要的一环,而界面设计的核心就是布局(Layout)。布局决定了应用界面的结构与外观,是用户体验好坏的重要因素之一。本文将详细介绍Android中各种布局的样式及其相关属性。 ##...

    Android_layout.rar_android_android 布局_layout

    在Android开发中,布局(Layout)是构建用户界面的核心元素,它定义了应用程序屏幕上元素的排列方式和相互关系。Android提供了多种布局管理器,如LinearLayout、RelativeLayout、ConstraintLayout等,每种布局都有其...

    自动换行的LinearLayout

    在Android开发中,LinearLayout是一种常见的布局管理器,用于线性地排列子视图,通常是水平或垂直方向。在默认情况下,LinearLayout会一直沿指定的方向(水平或垂直)延伸,直到所有子视图都排列完毕,不会自动换行...

    [Android开发从零开始].10.LinearLayout学习

    在Android应用开发中,LinearLayout是布局管理器中最基础且常用的一种。它按照垂直或水平的方向将子视图(Views)排列在一起,提供了简单且灵活的方式来组织用户界面。本教程将带你从零开始深入理解LinearLayout,并...

    计算器(android)

    &lt;LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1"&gt; &lt;Button android:id="@+id/mButton5" android:layout_...

    Android 控件说明

    - `layout_weight`:用于确定视图在容器中的相对大小,特别是在`LinearLayout`中,当设置了`layout_weight`时,如果`layout_width`或`layout_height`设置为`match_parent`,则会根据权重分配空间。 - `layout_...

    LinearLayout的属性详解

    LinearLayout是Android开发中的基础布局组件,其主要通过orientation、layout_weight等属性来实现灵活的视图布局。理解并熟练运用这些属性,能够使你在开发过程中更高效地创建用户界面,满足各种设计需求。在实际...

    Android中使用LinearLayout完成的内蒙古导览项目的代码清单 .pdf

    在Android应用开发中,LinearLayout是一种常见的布局管理器,它按照垂直或水平方向线性地排列其子视图。本文主要关注如何使用LinearLayout来实现一个内蒙古导览项目的代码清单。我们将分析`MainActivity.java`和`res...

    Android中使用LinearLayout完成的内蒙古导览练习题要求说明.pdf

    在Android应用开发中,LinearLayout是一种基础且常用的布局管理器,用于组织和排列应用程序中的视图组件。本练习题旨在帮助学生掌握如何利用LinearLayout实现一个内蒙古导览的应用界面。以下是完成这个练习题的具体...

    Android weight属性demo

    在Android开发中,`weight`属性是LinearLayout布局管理器中的一个重要概念,用于实现视图组件的权重分配,尤其是在处理屏幕尺寸适配时显得尤为重要。`weight`属性是Android为了解决在不同分辨率和屏幕尺寸设备上保持...

    Android实训购物车页面

    -&lt;LinearLayout android:background="@drawable/aaa" android:weightSum="1" android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" xmlns:android=...

    ANDROID LAYOUT

    5. android:layout_weight:用于在使用LinearLayout时,按照比例分配父布局的空间。 6. android:id:用于为布局或组件设置一个唯一标识符,以便在代码中引用。 知识点六:组件 在Android布局中,可以放置各种组件,...

    Hello_layout_demo

    在Android开发中,布局(Layout)是构建用户界面的核心组件,它定义了应用程序视图的结构和排列方式。本教程将深入探讨`Hello_layout_demo`中包含的五个关键布局:LinearLayout、RelativeLayout、GridLayout、...

    Android学习指南之Layout 布局--千锋培训

    在Android开发中,布局(Layout)是构建用户界面的核心元素,它负责组织和定位应用中的各个视图组件。本指南将着重讲解三种主要的布局类型:LinearLayout、RelativeLayout和TableLayout。 1. **LinearLayout**: ...

    Android开发—使用ActivityGroup来切换Activity和Layout

    android:layout_weight="1" android:layout_height="fill_parent" android:layout_width="fill_parent"&gt; &lt;LinearLayout android:background="@android:color/black" android:layout_gravity="bottom" ...

Global site tag (gtag.js) - Google Analytics