Merge "Disable preference list animation for Internet Settings" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-05-31 08:59:06 +00:00
committed by Android (Google) Code Review

View File

@@ -416,9 +416,14 @@ public class NetworkProviderSettings extends RestrictedSettingsFragment
@Override @Override
public void onResume() { public void onResume() {
final Activity activity = getActivity();
super.onResume(); super.onResume();
// Disable the animation of the preference list
final RecyclerView prefListView = getListView();
if (prefListView != null) {
prefListView.setItemAnimator(null);
}
// Because RestrictedSettingsFragment's onResume potentially requests authorization, // Because RestrictedSettingsFragment's onResume potentially requests authorization,
// which changes the restriction state, recalculate it. // which changes the restriction state, recalculate it.
final boolean alreadyImmutablyRestricted = mIsRestricted; final boolean alreadyImmutablyRestricted = mIsRestricted;