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

Commit 9fab5c1d authored by Maurice Lam's avatar Maurice Lam Committed by Android (Google) Code Review
Browse files

Merge "[LockSetup] Hide back button in notification interstitial" into mnc-dev

parents 80ca2687 752e5f38
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;

/**
 * Setup Wizard's version of RedactionInterstitial screen. It inherits the logic and basic structure
@@ -82,7 +83,8 @@ public class SetupRedactionInterstitial extends RedactionInterstitial {

            final NavigationBar navigationBar = layout.getNavigationBar();
            navigationBar.setNavigationBarListener(this);
            navigationBar.getBackButton().setEnabled(false);
            final Button backButton = navigationBar.getBackButton();
            backButton.setVisibility(View.GONE);
            SetupWizardUtils.setImmersiveMode(getActivity());
            return layout;
        }