これはスタックをバックアップするために断片を追加するための責任を負うの機能である:私は戻るボタンをクリックするとAndroid - addToBackStack()が動作しません。
public void populateContent(File f)
{
ContentFragment cf = new ContentFragment(ctx, ac, this);
FragmentTransaction transaction = ac.getSupportFragmentManager().beginTransaction();;
cf.updateView(f);
transaction.replace(R.id.contentFragment, cf);
transaction.addToBackStack(null);
transaction.commit();
}
、最後のフラグメントは、(何も起こりません)ロードされません。
何が原因なのでしょうか?
編集:FragmentManagerログ。
私のアプリケーションは、1秒間に2回のビューを保存するのではなく、最初の1及び2番目のビューを保存しているかのように私には思えます。
で
で
... – user1969053
これで解決できませんでした。 – Tool
この回答を見てください:http://stackoverflow.com/a/14030872/1484779 – jlopez