SetupWizard: Launch activities before loading fragments

Change-Id: Ic5f393e37e6a77ffa9812f8370d2e3ee05ec9a1d
This commit is contained in:
cretin45 2015-01-23 14:22:11 -08:00
parent 1fcde3985e
commit 4e0c85b7ef
2 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ public class GmsAccountPage extends SetupPage {
if (action == Page.ACTION_PREVIOUS) {
getCallbacks().onPreviousPage();
} else {
super.doLoadAction(context, action);
launchGmsAccountSetup(context);
super.doLoadAction(context, action);
}
}

View File

@ -65,8 +65,8 @@ public class WifiSetupPage extends SetupPage {
@Override
public void doLoadAction(Activity context, int action) {
super.doLoadAction(context, action);
SetupWizardUtils.launchWifiSetup(context);
super.doLoadAction(context, action);
}
@Override