我是靠谱客的博主 沉默蓝天,最近开发中收集的这篇文章主要介绍android layout wrap_content,个人经验 - Android的RelativeLayout布局的layout_height属性设置为wrap_content时的坑...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Android的RelativeLayout布局的layout_height属性设置为wrap_content时的坑:

此坑出现的条件:

1.RelativeLayout布局的layout_height属性设置为wrap_content

2.某“居中View”设置为layout_centerX(layout_centerVertical、layout_centerHorizontal、layout_centerInParent)

3.其它View相对于“居中View”做布局

此时坑出现了:

无论其它View设置了在“居中View”的下方(layout_below、layout_below)、上方(layout_above)、底部对齐(layout_alignBottom)等等,通通无效!

填坑方案:

RelativeLayout布局的layout_height属性设置为match_parent即可!

即使外层有LinearLayout使用layout_weight平分空间,它的match_parent也不会撑大外层LinearLayout的空间的。

当初想设置wrap_content,其实就是怕内部的RelativeLayout设置match_parent后会被撑大而已,实践证明,多虑了!

原文:http://www.cnblogs.com/AsionTang/p/4029446.html

最后

以上就是沉默蓝天为你收集整理的android layout wrap_content,个人经验 - Android的RelativeLayout布局的layout_height属性设置为wrap_content时的坑...的全部内容,希望文章能够帮你解决android layout wrap_content,个人经验 - Android的RelativeLayout布局的layout_height属性设置为wrap_content时的坑...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部