LinearLayout

1. 考虑一下case:

如果layout根布局是LinearLayout, 而且android:layout_width="wrap_content",

那么他的子View, 比如TextView设置成android:layout_gravity="center_horizontal",也不会在屏幕中居中显示。

因为子View只是指定在父layout中水平居中,但是父layout的宽度和子View一样,所以看不出对齐的效果。

解决办法:

将父layout设置成android:layout_width="fill_parent"

你可能感兴趣的:(LinearLayout)