Im combining replace with addtobackstack for new fragments added the activity. like so:
mFragmentManager.beginTransaction().replace(R.id.content_frame, searchFragment,"Frag_Search").addToBackStack("searchFragment").commit();
When the user back presses twice, i would like the app to exit
I tried some answers here: Clicking the back button twice to exit an activity but the don't close the app, just keeps removing the last fragment.