Fix a bug where homepage is using staled locale for tiles
When setting a new locale, SettingsActivity restarts to load everything in the new locale. Data (containing locale specific title/summary etc) is reloaded correctly and triggers a callback to UI to redraw. However we skip the first callback as an optimization for app startup time. When we restart fragment, we failed to save the state whether we have already seen the first callback. So when data with new locale text triggers the callback, it's being skipped and this make UI still render in old locale. The fix is to just save the state before fragment gets destroyed before locale change so the callback can trigger later. A better fix is: make data (Tile object) not cache text. Then we don't need to worry about locale cache at all. We should do this fix in the long term. Test: localeswitcher Test: adb shell am broadcast -a com.google.android.testing.i18n.localeswitcher.CHANGE_LOCALE -e LANGUAGE_TAG "zh" Test: adb shell am broadcast -a com.google.android.testing.i18n.localeswitcher.CHANGE_LOCALE -e LANGUAGE_TAG "ja" Fixes: 77470788 Bug: 77600770 Change-Id: Ic4223ddbb679db64d0fc3c29d16a5f61a66cc99c
This commit is contained in:
@@ -58,7 +58,8 @@ public class DashboardSummary extends InstrumentedFragment
|
||||
private static final int MAX_WAIT_MILLIS = 3000;
|
||||
private static final String TAG = "DashboardSummary";
|
||||
|
||||
private static final String EXTRA_SCROLL_POSITION = "scroll_position";
|
||||
private static final String STATE_SCROLL_POSITION = "scroll_position";
|
||||
private static final String STATE_CATEGORIES_CHANGE_CALLED = "categories_change_called";
|
||||
|
||||
private final Handler mHandler = new Handler();
|
||||
|
||||
@@ -69,7 +70,8 @@ public class DashboardSummary extends InstrumentedFragment
|
||||
private LinearLayoutManager mLayoutManager;
|
||||
private SuggestionControllerMixin mSuggestionControllerMixin;
|
||||
private DashboardFeatureProvider mDashboardFeatureProvider;
|
||||
private boolean isOnCategoriesChangedCalled;
|
||||
@VisibleForTesting
|
||||
boolean mIsOnCategoriesChangedCalled;
|
||||
private boolean mOnConditionsChangedCalled;
|
||||
|
||||
private DashboardCategory mStagingCategory;
|
||||
@@ -115,6 +117,10 @@ public class DashboardSummary extends InstrumentedFragment
|
||||
|
||||
mConditionManager = ConditionManager.get(activity, false);
|
||||
getLifecycle().addObserver(mConditionManager);
|
||||
if (savedInstanceState != null) {
|
||||
mIsOnCategoriesChangedCalled =
|
||||
savedInstanceState.getBoolean(STATE_CATEGORIES_CHANGE_CALLED);
|
||||
}
|
||||
if (DEBUG_TIMING) {
|
||||
Log.d(TAG, "onCreate took " + (System.currentTimeMillis() - startTime) + " ms");
|
||||
}
|
||||
@@ -182,7 +188,8 @@ public class DashboardSummary extends InstrumentedFragment
|
||||
if (mLayoutManager == null) {
|
||||
return;
|
||||
}
|
||||
outState.putInt(EXTRA_SCROLL_POSITION, mLayoutManager.findFirstVisibleItemPosition());
|
||||
outState.putBoolean(STATE_CATEGORIES_CHANGE_CALLED, mIsOnCategoriesChangedCalled);
|
||||
outState.putInt(STATE_SCROLL_POSITION, mLayoutManager.findFirstVisibleItemPosition());
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -193,7 +200,7 @@ public class DashboardSummary extends InstrumentedFragment
|
||||
mLayoutManager = new LinearLayoutManager(getContext());
|
||||
mLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
|
||||
if (bundle != null) {
|
||||
int scrollPosition = bundle.getInt(EXTRA_SCROLL_POSITION);
|
||||
int scrollPosition = bundle.getInt(STATE_SCROLL_POSITION);
|
||||
mLayoutManager.scrollToPosition(scrollPosition);
|
||||
}
|
||||
mDashboard.setLayoutManager(mLayoutManager);
|
||||
@@ -201,7 +208,7 @@ public class DashboardSummary extends InstrumentedFragment
|
||||
mDashboard.setListener(this);
|
||||
mDashboard.setItemAnimator(new DashboardItemAnimator());
|
||||
mAdapter = new DashboardAdapter(getContext(), bundle,
|
||||
mConditionManager.getConditions(), mSuggestionControllerMixin, getLifecycle());
|
||||
mConditionManager.getConditions(), mSuggestionControllerMixin, getLifecycle());
|
||||
mDashboard.setAdapter(mAdapter);
|
||||
mSummaryLoader.setSummaryConsumer(mAdapter);
|
||||
ActionBarShadowController.attachToRecyclerView(
|
||||
@@ -224,10 +231,10 @@ public class DashboardSummary extends InstrumentedFragment
|
||||
// Bypass rebuildUI() on the first call of onCategoriesChanged, since rebuildUI() happens
|
||||
// in onViewCreated as well when app starts. But, on the subsequent calls we need to
|
||||
// rebuildUI() because there might be some changes to suggestions and categories.
|
||||
if (isOnCategoriesChangedCalled) {
|
||||
if (mIsOnCategoriesChangedCalled) {
|
||||
rebuildUI();
|
||||
}
|
||||
isOnCategoriesChangedCalled = true;
|
||||
mIsOnCategoriesChangedCalled = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user