-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT/#249] 여행 친구 조회 뷰 / 엠티 뷰 구현 #251
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아니 걍 완벽한디 ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
굿굿 지리네요~ 역시 안드최강오비리드 이유빈
private fun initLinkInviteBtnListener() { | ||
binding.tvTodoInviteTermsText.setOnSingleClickListener { | ||
val clipboardManager = | ||
requireContext().getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager | ||
val clipData = ClipData.newPlainText(CLIP_LABEL, viewModel.inviteCode) | ||
clipboardManager.setPrimaryClip(clipData) | ||
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.S_V2) toast(getString(R.string.finish_trip_tv_copy_code_complete)) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
복사 굿굿~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
굿~ 이제 너무 잘한다... 그만잘해.
@@ -203,17 +231,22 @@ class CheckFriendsActivity : | |||
override fun onDestroy() { | |||
super.onDestroy() | |||
_adapter = null | |||
if (friendInviteDialog?.isAdded == true) friendInviteDialog?.dismiss() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?? == ture
라면 뒷부분은 날려도 될듯~~
if (friendInviteDialog?.isAdded == true) friendInviteDialog?.dismiss() | |
if (friendInviteDialog?.isAdded) friendInviteDialog?.dismiss() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
현재 FriendInviteEmptyDialog
가 nullable인데 == true
를 제거하면 if문은 Boolean 타입인데 Boolean? 타입이 들어가서 타입 불일치가 일어나는 것 같습니다,,!
…into feat/#249-check-friends
⛳️ Work Description
📸 Screenshot
Screen_Recording_20240313_034207_doorip.mp4
📢 To Reviewers