片段替换显示两个片段
Fragment replacement shows the two fragments
我尝试替换主布局中的片段。
在我的主要布局中,我有:
<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"
但是没有名字我编译不了...
据我所知,这是一个普遍的问题,我试图在网上找到解决方案,但我找不到任何解决方案。
感谢您的帮助。
将<fragment
替换为<FrameLayout
在你的activity中onCreate
添加如下代码
if (savedInstanceState == null) {
fm.beginTransaction()
.replace(R.id.frame_informations, GridFragment())
.commit();
}
这将正确初始化您的片段,并允许您在代码中轻松切换片段。
我尝试替换主布局中的片段。
在我的主要布局中,我有:
<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"
但是没有名字我编译不了...
据我所知,这是一个普遍的问题,我试图在网上找到解决方案,但我找不到任何解决方案。
感谢您的帮助。
将<fragment
替换为<FrameLayout
在你的activity中onCreate
添加如下代码
if (savedInstanceState == null) {
fm.beginTransaction()
.replace(R.id.frame_informations, GridFragment())
.commit();
}
这将正确初始化您的片段,并允许您在代码中轻松切换片段。