Merge "Post hiding loading view operation into to the message queue" into main

This commit is contained in:
Haijie Hong
2024-12-05 10:46:34 +00:00
committed by Android (Google) Code Review

View File

@@ -214,9 +214,11 @@ class DeviceDetailsFragmentFormatterImpl(
}
}
if (isLoading) {
fragment.setLoading(false, false)
isLoading = false
fragment.listView.post {
if (isLoading) {
fragment.setLoading(false, false)
isLoading = false
}
}
}