我已经实现了一个有一些步骤的公式。每个步骤都在使用Fragment
的新FrameLayout
中。
在最后一步(FRAGMENT A
)中有一个Button
。单击此Button
后,系统会启动新的Fragment
(FRAGMENT B
)并启动相机Intent
。
有时,会显示FRAGMENT A
而不是FRAGMENT B
。发生这种情况时,UI
元素被冻结,任何字段都是可嵌入的,继续使用该应用程序的唯一方法是关闭Form
并再次启动该过程。
我认为这是一个OOM
错误,因此Activity
被杀死/恢复,并且最后一个状态没有正确存储。
我试过检查一下,但没有调用方法onRestoreInstanceState()
。此外,无论是否显示,相机关闭后都会调用FRAGMENT B
的方法。这是我打开FRAGMENT B
和相机的代码:
BASE FRAGMENT
private void setCurrentFragment(int pos, boolean animate) {
showFragment(buildFragment(mCurrentPage), animate, animationFromRight);
....
}
private Fragment buildFragment(int pos) {
switch (mHasFamilyManager ? pos : pos + 1) {
............
case 3:
mCurrentFragment = PhotoVerificationFragment.newInstance();
if (mState.getAttachments().isEmpty()) {
switch (mState.getPictureSelector()) {
.....
case CAMERA:
onAddCameraPictureClicked();
break;
}
.....
return mCurrentFragment;
}
private void showFragment(final Fragment fragment, boolean animate,
final boolean animationFromRight) {
if (fragment != null) {
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
if (animate) {
if (animationFromRight) {
transaction.setCustomAnimations(R.anim.activity_slide_in_right,
R.anim.activity_slide_out_left);
} else {
transaction.setCustomAnimations(R.anim.activity_slide_in_left,
R.anim.activity_slide_out_right);
}
}
transaction.addToBackStack(null);
transaction.replace(R.id.container, fragment);
transaction.commit();
}
}
MainActivity
public void onAddCameraPictureClicked() {
startActivityForResult(takePictureIntent, requestCode);
.....
}
有人有想法吗?提前谢谢!
答案 0 :(得分:1)
请试试这个:
transaction.add(R.id.container, fragment);
transaction.disallowAddToBackStack();
transaction.commit();
通过使用replace
,您正在替换彼此重叠的片段,因此它不会删除先前的片段,也不会在当前片段下面添加新片段。
使用add
确保它始终位于最前面。
disallowAddToBackStack
将确保您没有在堆栈中保留任何内容。