1

我在过去几个小时一直在苦苦挣扎的 Android 上有一个非常基本的问题。我无法ViewPager在其容器中创建视图内容中心。这是我的代码:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_gravity="center"
        android:orientation="vertical"
        android:background="#FF0000FF">

    ...

    </LinearLayout>

</FrameLayout>

所以视图在我的视图中正确显示,ViewPager但它只是没有居中。通过在 上设置颜色FrameLayout,它似乎包装了LinearLayout而不是做一个马赫父级。我尝试了 aRelativeLayout并且LinearLayout没有太多机会,知道吗?

4

1 回答 1

0
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_centerInParent="true"
        android:orientation="vertical"
        android:background="#FF0000FF">

    ...

    </LinearLayout>

</RelativeLayout>

尝试这个

于 2013-06-12T15:08:13.587 回答