0

我目前正在尝试在 Viewpager 片段中包含 2 个片段。一切正常,但是如果我进一步滚动 2 个片段并返回到带有两个片段的片段,则只有上面的片段可见(片段 B 不可见)。如果我再次这样做,两者都会再次可见。onResume-Event 在 Fragment B 中调用,但未显示。布局 XML:

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
        <FrameLayout
            android:id="@+id/a_fragment"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@color/android_color_blue_dark"/>
        <FrameLayout
            android:id="@+id/b_fragment"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@color/android_color_green_dark" />
    </LinearLayout>

onCreateView() 中的父片段代码

    if (v.findViewById(R.id.a_fragment) != null) {
        FragmentManager mgr = getChildFragmentManager();
        Fragment f = mgr.findFragmentByTag(TAG_A_FRAGMENT);
        if (f == null) {
            f = new FragmentA();
        }
        FragmentTransaction transaction = mgr.beginTransaction();
        transaction.replace(R.id.a_fragment, f, TAG_S_FRAGMENT);
        transaction.commit();
    }
    if (v.findViewById(R.id.b_fragment) != null) {

        FragmentManager mgr = getChildFragmentManager();
        Fragment f = mgr.findFragmentByTag(TAG_B_FRAGMENT);
        if (f == null) {
            f = new FragmentBLogin();
        }
        FragmentTransaction transaction = mgr.beginTransaction();
        transaction.replace(R.id.b_fragment, f,
                TAG_B_FRAGMENT);
        transaction.commit();
    }

即使它们是静态的,我也会动态添加这些 Fragments 以防止出现此Error

4

1 回答 1

0

我固定如下。现在没有解释为什么它以这种方式工作,而不是以其他方式工作。

if (v.findViewById(R.id.a_fragment) != null) {
    FragmentManager mgr = getChildFragmentManager();
    Fragment f = mgr.findFragmentByTag(TAG_A_FRAGMENT);
    if (f == null) {
        f = new FragmentA();
    FragmentTransaction transaction = mgr.beginTransaction();
    transaction.replace(R.id.a_fragment, f, TAG_S_FRAGMENT);
    transaction.commit();
    }
}
if (v.findViewById(R.id.b_fragment) != null) {

    FragmentManager mgr = getChildFragmentManager();
    Fragment f = mgr.findFragmentByTag(TAG_B_FRAGMENT);
    if (f == null) {
        f = new FragmentBLogin();
    FragmentTransaction transaction = mgr.beginTransaction();
    transaction.replace(R.id.b_fragment, f,
            TAG_B_FRAGMENT);
    transaction.commit();
    }
}
于 2013-07-05T14:59:13.000 回答