private fun myStartActivity(c: Class<*>) { val intent = Intent(this, c) intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP) //액티비티가 여러게 쌓이는 것을 방지. 뒤로가기 누르면 앱 종료. startActivity(intent) }