博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
个人经验 - Android的RelativeLayout布局的layout_height属性设置为wrap_content时的坑
阅读量:5308 次
发布时间:2019-06-14

本文共 606 字,大约阅读时间需要 2 分钟。

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后会被撑大而已,实践证明,多虑了!

转载于:https://www.cnblogs.com/AsionTang/p/4029446.html

你可能感兴趣的文章
ul li剧中对齐
查看>>
关于 linux 的 limit 的设置
查看>>
模块搜索路径
查看>>
如何成为一名优秀的程序员?
查看>>
HDU(4528),BFS,2013腾讯编程马拉松初赛第五场(3月25日)
查看>>
C++期中考试
查看>>
Working with Characters and Strings(Chapter 2 of Windows Via C/C++)
查看>>
vim中文帮助教程
查看>>
Android 创建与解析XML(四)—— Pull方式
查看>>
CodeForces 411B 手速题
查看>>
同比和环比
查看>>
美国在抛弃慕课,中国却趋之若鹜
查看>>
SpringMvc拦截器运行原理。
查看>>
MySQL基础3
查看>>
云计算数据与信息安全防护
查看>>
全局设置导航栏
查看>>
FTP客户端配置2
查看>>
RxJS & Angular
查看>>
面向对象(多异常的声明与处理)
查看>>
Dedecms QQ一键登录插件
查看>>