액티비티 종료 썸네일형 리스트형 안드로이드. 자식 액티비티 닫을 때, 부모 액티비티도 같이 닫기How to finish parent activity from child activity 안드로이드. 자식 액티비티 닫을 때, 부모 액티비티도 같이 닫기How to finish parent activity from child activity 액티비티가 A -> B -> C -> D 이렇게 열릴 때, * D 까지 왔을 때, C와 B 모두 닫기 - D에서 Back버튼으로 A로 바로 가기 * D 로 가면서 C 닫기 -> B도 함께 닫기 * parent = B, child = C Intent intent = new Intent(getApplicationContext(),childActivity.class); startActivityForResult(intent,REQ_EXIT); @Override protected void onActivityResult(int requestCode, int resu.. 이전 1 다음