Make sure we do not make UI calls from background thread in DashboardSummary class.

Bug: 79705354
Test: make RunSettingsRoboTests -j40 and manual testing.
Change-Id: I08a08e05f3424f4a6d2100aed32d32bb15997c86
This commit is contained in:
Rajeev Kumar
2018-05-14 17:56:27 -07:00
parent 15700cb779
commit 549a188efe

View File

@@ -276,7 +276,7 @@ public class DashboardSummary extends InstrumentedFragment
mSummaryLoader.updateSummaryToCache(category); mSummaryLoader.updateSummaryToCache(category);
mStagingCategory = category; mStagingCategory = category;
if (mSuggestionControllerMixin == null) { if (mSuggestionControllerMixin == null) {
mAdapter.setCategory(mStagingCategory); ThreadUtils.postOnMainThread(() -> mAdapter.setCategory(mStagingCategory));
return; return;
} }
if (mSuggestionControllerMixin.isSuggestionLoaded()) { if (mSuggestionControllerMixin.isSuggestionLoaded()) {