Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ROOM
- BottomSheetDialog
- button
- EditText
- 코틀린
- 랜덤ID
- 뷰바인딩
- Kotlin
- nav_graph
- firebasefunctions
- FRAGMENT
- Dialog
- textview
- firebase
- OutlinedButton
- ViewModel
- Activity
- Imageview
- ButtonWithButton
- 팝업액티비티
- androidstudio
- MaterialButton
- 안드로이드
- 안드로이드스튜디오
- lifecyclescope
- 안드로이드 스튜디오
- 밑줄
- RealtimeDB
- Android
- ArrayList
Archives
- Today
- Total
안드로이드 앱 개발
뒤로가기 버튼을 눌렀을 때, 토스트 띄우고 앱 종료 - Java 본문
private long time = 0;
@Override
public void onBackPressed(){
if(System.currentTimeMillis()-time>=2000){
time=System.currentTimeMillis();
Toast.makeText(getApplicationContext(),"뒤로 버튼을 한번 더 누르면 종료합니다.",Toast.LENGTH_SHORT).show();
}else if(System.currentTimeMillis()-time<2000){
finish();
}
}
'안드로이드앱' 카테고리의 다른 글
Custom Dialog 만들기 (0) | 2021.06.12 |
---|---|
Activty의 Stack 관리 - Kotlin (0) | 2021.05.31 |
Room Library 사용 방법 1 - Kotlin (0) | 2021.03.31 |
BottomNavigationView + Viewpager2 (0) | 2021.03.30 |
Viewpager2 정복 (0) | 2021.03.30 |