Merge pull request #2712 from vector-im/feature/ons/fix_viewbinding_crashes

Fix viewbinding NPE crashes
This commit is contained in:
Benoit Marty 2021-01-22 16:53:56 +01:00 committed by GitHub
commit dc48cd4d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 3 deletions

View File

@ -10,6 +10,7 @@ Improvements 🙌:
Bugfix 🐛:
- Fix clear cache issue: sometimes, after a clear cache, there is still a token, so the init sync service is not started.
- Sidebar too large in horizontal orientation or tablets (#475)
- Crashes reported by PlayStore (new in 1.0.14) (#2707)
Translations 🗣:
-

View File

@ -196,6 +196,8 @@ class UiAllScreensSanityTest {
pressBack()
clickMenu(R.id.video_call)
pressBack()
clickMenu(R.id.search)
pressBack()
pressBack()
}

View File

@ -297,6 +297,8 @@ class RoomDetailFragment @Inject constructor(
private var lockSendButton = false
private val activeCallViewHolder = ActiveCallViewHolder()
private lateinit var emojiPopup: EmojiPopup
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
sharedActionViewModel = activityViewModelProvider.get(MessageSharedActionViewModel::class.java)
@ -512,7 +514,7 @@ class RoomDetailFragment @Inject constructor(
}
private fun setupEmojiPopup() {
val emojiPopup = EmojiPopup
emojiPopup = EmojiPopup
.Builder
.fromRootView(views.rootConstraintLayout)
.setKeyboardAnimationStyle(R.style.emoji_fade_animation_style)
@ -591,6 +593,7 @@ class RoomDetailFragment @Inject constructor(
autoCompleter.clear()
debouncer.cancelAll()
views.timelineRecyclerView.cleanup()
emojiPopup.dismiss()
super.onDestroyView()
}

View File

@ -76,10 +76,10 @@ class SearchFragment @Inject constructor(
controller.listener = this
}
override fun onDestroy() {
super.onDestroy()
override fun onDestroyView() {
views.searchResultRecycler.cleanup()
controller.listener = null
super.onDestroyView()
}
override fun invalidate() = withState(searchViewModel) { state ->