Skip to content

다른 유저 프로필 화면

EunJung Jung edited this page Jan 22, 2023 · 4 revisions

다른 유저 프로필 열기 관련 문서


클래스는 OtherUserProfileActivity이며 인텐트로 열어줄 때 userId 값만 putExtra로 넘겨주시면 됩니다.

아래 코드는 예시 코드입니다.

Intent(binding.root.context, OtherUserProfileActivity::class.java).also {
    it.putExtra("userId", userId)
    startActivity(it)
}
Clone this wiki locally