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

Commit 34e5a0c3 authored by Maurice Lam's avatar Maurice Lam
Browse files

[WifiDialog] Allow adding unspecified AP

In WifiDialogActivity, handle the case where the given
accessPointState is null, and show the Wi-Fi dialog allowing users
to enter the SSID and other credentials. This will be used by setup
wizard when user selected "Add new network" item.

Bug: 23392285
Change-Id: Ica2650d9e829d73281bc9c504c3005d9c5750d31
parent a4e1da0b
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -43,7 +43,10 @@ public class WifiDialogActivity extends Activity implements WifiDialog.WifiDialo

        final Intent intent = getIntent();
        final Bundle accessPointState = intent.getBundleExtra(KEY_ACCESS_POINT_STATE);
        final AccessPoint accessPoint = new AccessPoint(this, accessPointState);
        AccessPoint accessPoint = null;
        if (accessPointState != null) {
            accessPoint = new AccessPoint(this, accessPointState);
        }

        WifiDialog dialog = new WifiDialog(this, this, accessPoint, WifiConfigUiBase.MODE_CONNECT);
        dialog.show();