Android 加权片段未显示

Android weighted fragment not showing

基本上我想要做的是让一半的屏幕是选项卡布局,一半是图像(或其他任何东西)。在我开始增加重量之前,它工作得很好。

照原样,没有显示任何内容。什么会导致这个问题?

<android.support.v4.app.FragmentTabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:gravity="left"
    android:weightSum="2"
    android:background="#00025a">

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_weight="1">
        <TabWidget
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@android:id/tabs">
        </TabWidget>

        <FrameLayout
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:id="@android:id/tabcontent">
        </FrameLayout>

        <FrameLayout
            android:id="@+id/tabcontent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </FrameLayout>
    </LinearLayout>

    <ImageView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:src="@drawable/test_room_1"/>

</android.support.v4.app.FragmentTabHost>

如果没有权重组件,选项卡相关内容会显示,但我假设它会将图像推出,因为它没有显示。

如有任何帮助,我们将不胜感激。 :)

更新:

这里是要求的截图:Weighted

调用 activity:

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTabHost;
import android.widget.ImageView;

public class sandbox_mode extends FragmentActivity {
    ImageView level_background;

    private FragmentTabHost mTabHost;

    @Override
    public void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_sandbox_mode_play);

        mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
        mTabHost.setup(this, getSupportFragmentManager(), R.id.tabcontent);

        mTabHost.addTab(mTabHost.newTabSpec("Enemy Tab").setIndicator("Enemies"),
                enemy_tab.class, null);
    }
}

使用 childFragmentManager 代替 FragmentManager

mTabHost.setup(getActivity(), getChildFragmentManager(), R.id.tabcontent);

如果您想在 原生片段 中使用嵌套片段。使用 getFragmentManager().

如果您想在 支持库 Fragment 中使用嵌套片段,请使用 getChildFragmentManager().

如果你看FragmentTabHostlink的文档,你会发现它不是继承自LinearLayout,所以基本上layout_weight不受这个支持容器。我建议添加额外的 top LinearLayout 以使其正常工作。

<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="left"
android:weightSum="2"
android:background="#00025a">
<LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="horizontal"
   android:weightSum="2" />

    <LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:layout_weight="1">
    <TabWidget
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@android:id/tabs">
    </TabWidget>

    <FrameLayout
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:id="@android:id/tabcontent">
    </FrameLayout>

    <FrameLayout
        android:id="@+id/tabcontent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    </FrameLayout>
    </LinearLayout>

    <ImageView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:src="@drawable/test_room_1"/>
</LinearLayout>

</android.support.v4.app.FragmentTabHost>