安卓 layout_gravity 使用时注意
官网定义了 layout_gravity的使用方法。意思是用于控制子view在父view中的显示位置:
Standard gravity constant that a child supplies to its parent. Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout.
Must be one or more (separated by ‘|‘) of the following constant values.
so,写了一个代码。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="vertical" >
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="hahha"
android:layout_gravity="center"
>
</LinearLayout>
期待着按钮能够居中,而实际上。。
当然要使这个按钮居中可以在LinearLayout中设置android:gravity="center"
总结:
1、并不是所有的属性值在任何条件下都起作用
2、当view在竖直线性布局中时,layout_gravity属性只是在水平方向上才会起作用。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。