transaction.addToBackStack(null)没有意义

时间:2015-12-14 07:29:20

标签: android-fragments

transaction.addToBackStack(null)没有意义吗?

我的程序设置为按下按钮并添加片段,之前: enter image description here 按下后: enter image description here

我的代码是:

  anotherFragment anotherFragment = new anotherFragment();
  android.app.FragmentManager fragmentManager = getFragmentManager();
  FragmentTransaction transaction = fragmentManager.beginTransaction();
  transaction.replace(R.id.right_container,anotherFragment);
  transaction.addToBackStack(null);
  transaction.commit();

出了什么问题?

1 个答案:

答案 0 :(得分:0)

我认为这可能是Genymotion的错误

几分钟后,我在genymotion模拟器中重新启动它。它有效!