-
Notifications
You must be signed in to change notification settings - Fork 0
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/week06-xml-advanced #32
base: develop-xml
Are you sure you want to change the base?
Conversation
_binding = FragmentFollowerBinding.inflate(inflater, container, false) | ||
return binding.root | ||
return _binding?.root | ||
} | ||
|
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.
왜 바꾸신 것일까여?
super.onDestroyView() | ||
_binding?.rvFollower?.adapter = null | ||
_binding = null |
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.
followerAdapter 를 메모리 해제처리 해줘야합니다
즉 lateinit var로 선언하면 불가능해지겠죠?
return _binding?.root | ||
} |
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.
return _binding?.root | |
} | |
return binding.root | |
} |
super.onDestroyView() | ||
_binding?.rvRepo?.adapter = null | ||
_binding = null |
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.
여기도 _binding?.rvRepo?.adapter = null는 의미 없습니당
작업 내용
구현 화면
이전과 동일합니다.