728x90
@Override
public void onBackPressed() {
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
} // 뒤로가기 버튼 클릭했을 때 홈으로 이동하기
여기서 onBackPressed() 함수가 뒤로가기 버튼을 클릭했을 때 호출되는 함수입니다.
728x90
'Programming > Android' 카테고리의 다른 글
안드로이드 스튜디오 notification 소리 진동 설정 (0) | 2020.03.04 |
---|---|
안드로이드 스튜디오 알람 사용하기 (10) | 2019.12.05 |
안드로이드 스튜디오 MediaPlayer 사용하기 (0) | 2019.11.28 |
안드로이드 스튜디오 Swipe Button 사용하기 (0) | 2019.11.28 |
안드로이드 스튜디오 Nofication 클릭하여 실행중인 어플 불러오기 (0) | 2019.11.25 |