500error
[안드로이드, Kotlin] 백키 구현 본문
반응형
backKey.setOnClickListener {
val alert = AlertDialog.Builder(this)
alert.setTitle("처음으로 돌아가시겠습니까?")
.setNegativeButton("아니오") { p0, p1 -> }
.setPositiveButton("예") { p0, p1 ->
val intent = Intent(this@ResultMainActivity, MainActivity::class.java)
startActivity(intent)
finish()
}
alert.show()
}
내비게이션 바에서 뒤로가기를 누를 시 뒤로가짐
반응형
'안드로이드 > 코틀린' 카테고리의 다른 글
깃 push할때 error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500 해결 방법 (0) | 2024.10.15 |
---|---|
error: failed to push some refs to "깃 path" 오류 해결방법 (0) | 2024.10.15 |
[안드로이드, Kotlin] 구글 로그인 구현 (0) | 2024.10.15 |
[안드로이드, Kotlin] 계산기 앱 만들기 - 개인 프로젝트 3 (0) | 2024.02.21 |
[안드로이드, Kotlin] 단위변환기 앱 만들기 - 개인 프로젝트 2 (0) | 2024.01.04 |
Comments