私LinearLayout
は6つのFrameLayout
ブロックを含む を持っています。
FrameLayout
親内のすべてのブロックを中央に配置する方法はありますLinearLayout
か? 現在、それらは画面の中央ではなく左側にあります。
私LinearLayout
は6つのFrameLayout
ブロックを含む を持っています。
FrameLayout
親内のすべてのブロックを中央に配置する方法はありますLinearLayout
か? 現在、それらは画面の中央ではなく左側にあります。
android:layout_gravity="center"
LinearLayout と FrameLayouts で使用しandroid:gravity="center"
て、それらを中央に設定できます。他のオプションがありますリンクを参照してください
この方法を試してください
<?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>