RelativeLayout 内容居中解决办法

来源:互联网 发布:知乎能用邮箱注册吗 编辑:程序博客网 时间:2024/04/29 14:49
解决办法:
在RelativeLayout的子空间里,使用以下2个属性就行了。

                    android:layout_centerVertical="true"

                    android:layout_centerHorizontal="true"
0 0