展会信息港展会大全

Android属性系列之layout_weight
来源:互联网   发布日期:2015-11-15 09:59:48   浏览:1068次  

导读:对自己现在所了解的layout_weight属性进行记录,不求全面,只求正确!layout_weight意为"权重\",我的理解就是给组件设置一个显示大小的比例。layout_we...

对自己现在所了解的layout_weight属性进行记录,不求全面,只求正确!

layout_weight意为"权重",我的理解就是给组件设置一个显示大小的比例。

layout_weight设置一个值,会出现两种情况。

第一种:当组件的“layout_width”属性为“fill_parent”时,值越小,组件越大。

第二种:当组件的“layout_width”属性为“wrap_content”时,值越大,组件越大。

第一种情况:

Xml代码

<LinearLayout

android:layout_weight="1"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:orientation="horizontal"

android:layout_marginLeft="10dp"

android:layout_marginRight="10dp"

>

<Button

android:id="@+id/btn_save"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="保存"

/>

<Button

android:id="@+id/btn_return"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_weight="4"

android:text="返回"

/>

</LinearLayout>

在这里"保存"按钮的Layout_weight=1,"返回"按钮的Layout_weight=4,layout_width="fill_parent"时, 运行效果为:

第二种情况:

Xml代码

<LinearLayout

android:layout_weight="1"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:orientation="horizontal"

android:layout_marginLeft="10dp"

android:layout_marginRight="10dp"

>

<Button

android:id="@+id/btn_save"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="保存"

/>

<Button

android:id="@+id/btn_return"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="4"

android:text="返回"

/>

</LinearLayout>

在这里"保存"按钮的Layout_weight=1,"返回"按钮的Layout_weight=4,layout_width="wrap_content"时,运行效果为:

以上为本人对已知情况的总结,如有不对或总结不足,望指教!

作者“背着行囊独自前行....”

赞助本站

人工智能实验室

相关热词: android开发 教程

AiLab云推荐
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港