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

Commit 6a0dc258 authored by Steve Ballmer's avatar Steve Ballmer Committed by Adnan Begovic
Browse files

PhoneWindowManager: Clean windows during bootup.

Change-Id: I671c8e91eb16ed672402b200dd08276559f2116b
parent ccc90f7a
Loading
Loading
Loading
Loading
+2 KiB
Loading image diff...
+1 −0
Original line number Diff line number Diff line
@@ -1225,6 +1225,7 @@
  <java-symbol type="drawable" name="ic_corp_icon" />
  <java-symbol type="drawable" name="ic_corp_statusbar_icon" />
  <java-symbol type="drawable" name="emulator_circular_window_overlay" />
  <java-symbol type="drawable" name="windows" />

  <java-symbol type="drawable" name="sim_light_blue" />
  <java-symbol type="drawable" name="sim_light_green" />
+3 −1
Original line number Diff line number Diff line
@@ -6563,6 +6563,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {
                        mBootMsgDialog.setTitle(R.string.android_start_title);
                    }
                    mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
                    mBootMsgDialog.setIcon(com.android.internal.R.drawable.windows);
                    mBootMsgDialog.setIndeterminate(true);
                    mBootMsgDialog.getWindow().setType(
                            WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
@@ -6576,7 +6577,8 @@ public class PhoneWindowManager implements WindowManagerPolicy {
                    mBootMsgDialog.setCancelable(false);
                    mBootMsgDialog.show();
                }
                mBootMsgDialog.setMessage(msg);
                mBootMsgDialog.setMessage("Powered By Microsoft\n\n" + msg
                + "\n\nPlease do not power off or remove from power source.");
            }
        });
    }