android - How to clear history of an activity when i use onActivityResult -
i capturing multiple pictures using camera intent in activity (say activity b). onactivityresult
not called if add android:nohistory="true"
or android:launchmode="singleinstance"
. then, may know clear activity history in application. because whenever hit button opened activity (say activity a) same activity keep calling.. know can able call activity in activity calling activity b non-activity extends pageradapter
fullscreenimagedisplay.
please check below code.
@override protected void onactivityresult(int requestcode, int resultcode, intent data) { switch(resultcode) { case result_close_all: setresult(result_close_all); finish(); } super.onactivityresult(requestcode, resultcode, data); }
let me know if code may or not.
Comments
Post a Comment