码迷,mamicode.com
首页 > 其他好文 > 详细

RelativeLayout设置wrap_content无效

时间:2018-02-05 21:42:54      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:nbsp   依赖关系   关系   roi   rap   end   ati   height   can   

尊重劳动成果,转载请标明出处:http://www.cnblogs.com/tangZH/p/8419053.html 

 

在做项目的过程中,遇到了一个奇怪的现象,我设置RelativeLayout为的宽度为wrap_content,而且RelativeLayout里面的组件也设置了固定大小,可是RelativeLayout宽度大小还是会铺满整个屏幕。 

 

为啥???一脸闷逼

百度之后发现,官方文档有解释:

A Layout where the positions of the children can be described in relation to each other or to the parent.Note that you cannot have a circular dependency between the size of the RelativeLayout and the position of its children. For example, you cannot have a RelativeLayout whose height is set to WRAP_CONTENT and a child set to ALIGN_PARENT_BOTTOM.

 

它的意思大概是说:不能在RelativeLayout的大小和子级的位置之间存在循环依赖关系。 例如,不能将RelativeLayout的高度设置为WRAP_CONTENT,将子设置为ALIGN_PARENT_BOTTOM。

 

就我遇到的两种情况而言是这样的:

1、设置RelativeLayout的宽度为wrap_content,子组件设置为

android:layout_alignParentEnd="true"

于是出现了RelativeLayout宽度铺满屏幕的现象

 

2、设置RelativeLayout的高度为wrap_content,子组件设置为

ALIGN_PARENT_BOTTOM

于是出现了RelativeLayout的高度铺满屏幕的现象

 

最终,我还是乖乖改为LinearLayout布局

RelativeLayout设置wrap_content无效

标签:nbsp   依赖关系   关系   roi   rap   end   ati   height   can   

原文地址:https://www.cnblogs.com/tangZH/p/8419053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!