17
onActivityResult에서 DialogFragment 표시
내 조각에 대한 onActivityResult에 다음 코드가 있습니다. onActivityResult(int requestCode, int resultCode, Intent data){ //other code ProgressFragment progFragment = new ProgressFragment(); progFragment.show(getActivity().getSupportFragmentManager(), PROG_DIALOG_TAG); // other code } 그러나 다음과 같은 오류가 발생합니다. Caused by: java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState 무슨 일이 일어나고 있는지 아는 사람이 있거나 어떻게 해결할 …