bookwhale / bookwhale-client

0 stars 2 forks source link

채팅방 삭제 후 채팅방 목록으로 이동될 수 있도록 보완 요청드립니다. #139

Closed GentleDot closed 2 years ago

YeseopLee commented 2 years ago

채팅방 삭제시 채팅방 목록으로 이동하게끔 완료하였습니다. #154

        MaterialAlertDialogBuilder(this)
            .setMessage(getString(R.string.exitChatRoom))
            .setNegativeButton(resources.getString(R.string.cancel)) { _, _ ->
                // Respond to negative button press
            }
            .setPositiveButton(resources.getString(R.string.confirm)) { _, _ ->
                // Respond to positive button press
                viewModel.exitChatRoom(roomId!!.toInt())
                finish() // 채팅방 액티비티 종료, 이전화면으로 돌아간다.
            }
            .show()