1

LinearLayoutは6つのFrameLayoutブロックを含む を持っています。

ここに画像の説明を入力

FrameLayout親内のすべてのブロックを中央に配置する方法はありますLinearLayoutか? 現在、それらは画面の中央ではなく左側にあります。

4

2 に答える 2

3

android:layout_gravity="center"LinearLayout と FrameLayouts で使用しandroid:gravity="center"て、それらを中央に設定できます。他のオプションがありますリンクを参照してください

于 2013-09-05T06:41:58.143 に答える
0

この方法を試してください

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="2dp" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </FrameLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </FrameLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </FrameLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </FrameLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </FrameLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </FrameLayout>

</LinearLayout>
于 2013-09-05T06:41:20.690 に答える