8

我的应用程序在主屏幕上显示了很多图像。用户可以通过触摸图像查看有关产品的更多信息。主屏幕片段被隐藏,产品详细信息片段变得可见。通过单击返回键,主屏幕片段再次可见。

分片事务实现如下:

    @Override
public void showProduct(Product p, boolean isParentTabbed) {
    FragmentManager fm = getSupportFragmentManager();
    FragmentTransaction transaction = fm.beginTransaction();

    // the new fragment
    Fragment mFragment = new ProductDetailFragment(p,isParentTabbed);

    //hide main screen fragment and add product detail fragment
    transaction.hide(currentlyOpenedFragment);
    transaction.add(android.R.id.content,mFragment);

    //set new fragment as current "on top" fragment
    currentlyOpenedFragment = mFragment;

    //start animation
    transaction.setCustomAnimations(R.anim.slide_in_bottom, R.anim.slide_out_top);

    transaction.addToBackStack(null);
    transaction.commit();
}

一切正常,除非用户在产品详细信息片段中打开共享对话框(标准 android 共享意图)并通过单击返回键关闭对话框。出于某种原因,调用了主屏幕片段(隐藏)中的 onResume 方法。我通过将以下代码添加到主屏幕片段中的 onResume 方法解决了这个问题:

    super.onResume();
    if(this.isHidden()){
        Log.d("tab","dont resume tab0fragment because it is hidden");
        return;
    }

这工作正常,但问题仍然存在:当用户关闭另一个片段中的共享对话框时,为什么在隐藏片段中调用 onResume()?

4

1 回答 1

4

隐藏的片段仍然遵循片段生命周期。查看文档中的流程图。User navigates backwards or the fragment is removed/replaced.导致onDestroyView()被调用,The fragment returns to the layout from the back stack,这是您的主屏幕片段所在的位置。

于 2013-05-03T21:53:45.080 回答