片段替换显示两个片段

时间:2019-03-09 19:01:24

标签: android android-fragments fragment android-fragmentactivity fragmentmanager

我尝试替换主布局中的片段。

在我的主要布局中,我有:

<fragment
        android:id="@+id/frame_informations"
        android:name="GridFragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginStart="2dp"
        android:layout_marginEnd="2dp"
        app:layout_constraintBottom_toTopOf="@+id/main_bottom_menu"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/llLit"/>

当我要替换此片段时,我使用:

 public void switchFrameInformations(Fragment newFragment) {
            try {

                FragmentTransaction ft = fm.beginTransaction();
               // ft.setCustomAnimations(android.R.anim., android.R.anim.fade_out);
                if (fm.findFragmentById(R.id.frame_informations) == null) {
                    ft.add(R.id.frame_informations, newFragment);
                } else {
                    ft.replace(R.id.frame_informations, newFragment);
                }
              //  ft.addToBackStack(null);
                ft.commit();
                fm.findFragmentById(R.id.frame_informations).getView().requestLayout();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

fm是片段管理器...

这有效,但是会发生一些奇怪的事情:新片段包含名称列表,并且背景是透明的。替换结束时,我可以在新片段的背景中看到旧片段...

在调试控制台中,我可以看到所有方法通常都称为:onDestroy等。我猜想XML描述中的名称可能会引起问题:

android:name="GridFragment"

但是如果没有名称,我将无法编译...

就我认为这是一个普遍的问题,我试图在Web上找到一个解决方案,但找不到任何解决方案。

谢谢您的帮助。

1 个答案:

答案 0 :(得分:1)

<fragment替换为<FrameLayoutonCreate中的活动中添加以下代码

if (savedInstanceState == null) {
    fm.beginTransaction()
        .replace(R.id.frame_informations, GridFragment())
        .commit();
}

这将正确初始化您的片段,并允许您轻松地在代码中切换片段。