I use the fragment
, and i open another view in the same fragment
it\'s open properly, But the problem is, I can\'t get that how get back to the fir
I use Fragment on android3.0(Tab app) in that i got this as worked.
Fragment duedateFrag = new DuedateFrag(true);
FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.replace(R.id.main_tasklistdetail_lay, duedateFrag);
ft.addToBackStack(null);
ft.commit();
You can use setTargetFragment. An example is available here