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

Commit f9692b32 authored by Tyler Gunn's avatar Tyler Gunn Committed by Markus S
Browse files

[BACKPORT] Hide overlay windows when showing phone account enable/disable screen.

Hide any system alert window overlays when the screen that lets the user
enable/disable phone accounts is shown.

Test: Manual test with overlay shown from test app; verify that the overlay
is hidden when the phone account selection screen is opened.
Bug: 246933359

Change-Id: Ia0209d57ee9a672cde4196076845d77941dc3f68
(cherry picked from commit a7d57ace)
Merged-In: Ia0209d57ee9a672cde4196076845d77941dc3f68
parent 987d57e7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -25,12 +25,16 @@ import android.telecom.Log;
import android.telecom.PhoneAccountHandle;
import android.telecom.TelecomManager;
import android.view.MenuItem;
import android.view.WindowManager;

public class EnableAccountPreferenceActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

	getWindow().addPrivateFlags(
                WindowManager.LayoutParams.PRIVATE_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS);

        getFragmentManager().beginTransaction()
                .replace(android.R.id.content, new EnableAccountPreferenceFragment())
                .commit();