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

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

Merge "Fix flickers on the Location page" into tm-dev

parents 51316c13 0bf3ed99
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -131,12 +131,16 @@ public class RecentLocationAccessPreferenceController extends LocationBasePrefer
            banner.setSelectable(false);
            mCategoryRecentLocationRequests.addPreference(banner);
        }

        if (mUiBlockListener != null) {
            mUiBlockListener.onBlockerWorkFinished(this);
        }
    }

    @Override
    public void onLocationModeChanged(int mode, boolean restricted) {
        boolean enabled = mLocationEnabler.isEnabled(mode);
        mCategoryRecentLocationRequests.setVisible(enabled);
        updatePreferenceVisibilityDelegate(mCategoryRecentLocationRequests, enabled);
    }

    /**
+4 −2
Original line number Diff line number Diff line
@@ -20,11 +20,13 @@ import android.content.Context;
import androidx.preference.Preference;
import androidx.preference.PreferenceScreen;

import com.android.settings.core.BasePreferenceController;

/**
 * Preference controller that handles the "See All" button for recent location access.
 */
public class RecentLocationAccessSeeAllButtonPreferenceController extends
        LocationBasePreferenceController {
        LocationBasePreferenceController implements BasePreferenceController.UiBlocker {

    private Preference mPreference;

@@ -44,6 +46,6 @@ public class RecentLocationAccessSeeAllButtonPreferenceController extends
    @Override
    public void onLocationModeChanged(int mode, boolean restricted) {
        boolean enabled = mLocationEnabler.isEnabled(mode);
        mPreference.setVisible(enabled);
        updatePreferenceVisibilityDelegate(mPreference, enabled);
    }
}