-
Notifications
You must be signed in to change notification settings - Fork 1
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
[REFACTOR] kotlin-android-extensions 제거 후 viewBinding, kotlinx-parcelize 도입 #358
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.
수고 많으셨습니다 최고야
@@ -502,15 +501,14 @@ class DrawActivity : BindingActivity<ActivityDrawBinding>(R.layout.activity_draw | |||
* 코스 완성 시 뜨는 팝업 (보관함 가기 / 바로 달리기) | |||
*/ | |||
private fun notifyCreateFinish() { //todo dialogFragment로 리팩토링 |
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.
dialog를 만들 수 있는 이유는 다양한데 dialogFragment를 써야 하는 이유가 있을까요?
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.
일단 저 주석이 제가 작성한게 아니긴한데 .. 😅 아마 setActivityDialog()가 alertDialog를 만드는 함수여서 BindingDialogFragment도 만든김에 dialogFragment로 리팩토링하려고 하지 않았을까 싶습니다 !!
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.
dialog를 쓰면 activity가 파괴될 때 같이 없애주지 않으면 window leak 에러가 뜹니다.
dialogFragment를 쓰면 fragment의 생명주기를 활용해 activity가 파괴될 때 하위로 속해있는 fragment들까지 자동으로 파괴되므로 memory leak 문제를 편리하게 예방할 수 있습니당. 👍🏻
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.
아아 주석에 대한 질문이 아니라 공부의 목적이었군요 ㅎㅎㅎ 맞아요 dialogFragment는 생명주기 관리의 이점이 있죠 덕분에 한 번 더 짚고 넘어갑니다 감사해용 😊
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.
이슈 파두고 계속 미루고 있었는데 😂
대신 마이그레이션 해줘서 고맙습니다!! 👍
📌 개요
✨ 작업 내용
✨ PR 포인트
이제 컴포즈 버전업하면 될 것 같습니다 ~! 기존 다이얼로그 동작 잘되나 다 확인하긴 했는데 그래도 한번씩 실행부탁드려요
그리고 기존 contextExt 로직을 유지하는 선에서 딱 제거작업만 해서 findViewById와 같은 개선할만한 사항이 남아있긴 합니다 컴포즈로 이전할 예정이라서 개선없이 그냥 두었어요 : )