NotesFragment hintfrag = (NotesFragment) getFragmentManager().findFragmentByTag(Def.TAG_NOTES); //注意事項画面の重複表示チェック if (hintfrag == null && !isFinishing()) { hintfrag = NotesFragment.newInstance(); FragmentTransaction ft = getFragmentManager().beginTransaction(); ft.replace(R.id.activity_container, hintfrag, Def.TAG_NOTES); ft.addToBackStack(null); ft.commit(); }以代码格式
时间: 2023-06-01 08:04:00 浏览: 95
RouteExample.rar_android开发_Java_
|| !hintfrag.isVisible()) {
//注意事項画面が表示されていない場合、新しく作成して表示する
hintfrag = new NotesFragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.replace(R.id.fragment_container, hintfrag, Def.TAG_NOTES);
transaction.addToBackStack(null);
transaction.commit();
} else {
//注意事項画面が表示されている場合、何もしない
}
阅读全文