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

Commit 88815d14 authored by Jakub Pawlowski's avatar Jakub Pawlowski
Browse files

Prevent overlay drawing on top of Bluetooth pairing dialog

Bug: 155648639
Change-Id: I99643ee9084f3a9bc1ad9a459ac27c587d832c91
parent 10caf51f
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -27,6 +27,8 @@ import android.os.Bundle;
import androidx.annotation.VisibleForTesting;
import androidx.annotation.VisibleForTesting;
import androidx.fragment.app.FragmentActivity;
import androidx.fragment.app.FragmentActivity;


import static android.view.WindowManager.LayoutParams.SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS;

/**
/**
 * BluetoothPairingDialog asks the user to enter a PIN / Passkey / simple confirmation
 * BluetoothPairingDialog asks the user to enter a PIN / Passkey / simple confirmation
 * for pairing with a remote Bluetooth device. It is an activity that appears as a dialog.
 * for pairing with a remote Bluetooth device. It is an activity that appears as a dialog.
@@ -64,6 +66,8 @@ public class BluetoothPairingDialog extends FragmentActivity {
    @Override
    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        super.onCreate(savedInstanceState);

        getWindow().addSystemFlags(SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS);
        Intent intent = getIntent();
        Intent intent = getIntent();
        mBluetoothPairingController = new BluetoothPairingController(intent, this);
        mBluetoothPairingController = new BluetoothPairingController(intent, this);
        // build the dialog fragment
        // build the dialog fragment