我是 Android 布局的初学者,但我想将内容垂直和水平居中。
所以我正在读的这本书是这样说的:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/background"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:padding="30dip"
android:orientation="horizontal" >
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center" >
...component.. etc...
这行得通,我想我明白了,除了 Eclipse 说:
这个线性布局或者它的父级是没用的;将背景属性转移到另一个视图
但我不明白这一点?