一直不明白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>
<?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>
附件为运行的效果:
分享到:
相关推荐
在Android开发中,`android:layout_weight`是一个非常重要的属性,尤其在布局管理器中,如LinearLayout。这个属性主要用于在有限的空间内分配组件的大小,根据权重比例来决定每个子视图占据的屏幕空间。本篇文章将...
在Android开发中,`android:layout_weight`是一个关键属性,特别是在使用`LinearLayout`进行界面布局时。`layout_weight`用于指定一个子视图在父视图中的权重,它决定了控件如何分配额外的空间,尤其是在视图的尺寸...
用Eclipse加载项目工程 <LinearLayout xmlns:android=... android:layout_weight="0.66" android:background="@drawable/blue_bg" android:orientation="vertical" > android:layout
在Android开发中,Layout是构建用户界面的关键组成部分,用于组织和定位应用中的各种View组件。本文将详细介绍几种主要的Layout类型及其特点。 1. FrameLayout FrameLayout是最基础的布局方式,它将所有子元素置于...
在Android应用开发中,界面设计是非常重要的一环,而界面设计的核心就是布局(Layout)。布局决定了应用界面的结构与外观,是用户体验好坏的重要因素之一。本文将详细介绍Android中各种布局的样式及其相关属性。 ##...
在Android开发中,布局(Layout)是构建用户界面的核心元素,它定义了应用程序屏幕上元素的排列方式和相互关系。Android提供了多种布局管理器,如LinearLayout、RelativeLayout、ConstraintLayout等,每种布局都有其...
在Android开发中,LinearLayout是一种常见的布局管理器,用于线性地排列子视图,通常是水平或垂直方向。在默认情况下,LinearLayout会一直沿指定的方向(水平或垂直)延伸,直到所有子视图都排列完毕,不会自动换行...
在Android应用开发中,LinearLayout是布局管理器中最基础且常用的一种。它按照垂直或水平的方向将子视图(Views)排列在一起,提供了简单且灵活的方式来组织用户界面。本教程将带你从零开始深入理解LinearLayout,并...
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1"> <Button android:id="@+id/mButton5" android:layout_...
- `layout_weight`:用于确定视图在容器中的相对大小,特别是在`LinearLayout`中,当设置了`layout_weight`时,如果`layout_width`或`layout_height`设置为`match_parent`,则会根据权重分配空间。 - `layout_...
LinearLayout是Android开发中的基础布局组件,其主要通过orientation、layout_weight等属性来实现灵活的视图布局。理解并熟练运用这些属性,能够使你在开发过程中更高效地创建用户界面,满足各种设计需求。在实际...
在Android应用开发中,LinearLayout是一种常见的布局管理器,它按照垂直或水平方向线性地排列其子视图。本文主要关注如何使用LinearLayout来实现一个内蒙古导览项目的代码清单。我们将分析`MainActivity.java`和`res...
在Android应用开发中,LinearLayout是一种基础且常用的布局管理器,用于组织和排列应用程序中的视图组件。本练习题旨在帮助学生掌握如何利用LinearLayout实现一个内蒙古导览的应用界面。以下是完成这个练习题的具体...
在Android开发中,`weight`属性是LinearLayout布局管理器中的一个重要概念,用于实现视图组件的权重分配,尤其是在处理屏幕尺寸适配时显得尤为重要。`weight`属性是Android为了解决在不同分辨率和屏幕尺寸设备上保持...
-<LinearLayout android:background="@drawable/aaa" android:weightSum="1" android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" xmlns:android=...
5. android:layout_weight:用于在使用LinearLayout时,按照比例分配父布局的空间。 6. android:id:用于为布局或组件设置一个唯一标识符,以便在代码中引用。 知识点六:组件 在Android布局中,可以放置各种组件,...
在Android开发中,布局(Layout)是构建用户界面的核心组件,它定义了应用程序视图的结构和排列方式。本教程将深入探讨`Hello_layout_demo`中包含的五个关键布局:LinearLayout、RelativeLayout、GridLayout、...
在Android开发中,布局(Layout)是构建用户界面的核心元素,它负责组织和定位应用中的各个视图组件。本指南将着重讲解三种主要的布局类型:LinearLayout、RelativeLayout和TableLayout。 1. **LinearLayout**: ...
android:layout_weight="1" android:layout_height="fill_parent" android:layout_width="fill_parent"> <LinearLayout android:background="@android:color/black" android:layout_gravity="bottom" ...