Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3117d908 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents 13caa482 b500e647
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -416,9 +416,14 @@ public class NetworkProviderSettings extends RestrictedSettingsFragment

    @Override
    public void onResume() {
        final Activity activity = getActivity();
        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,
        // which changes the restriction state, recalculate it.
        final boolean alreadyImmutablyRestricted = mIsRestricted;