在myActivity,这是我的代码检查我的手机连接到互联网或没有。
if (!isConnected()) {
// super.playingVideo.setVideoUrl(product.getVideoUrl());
String message = getResources().getString(R.string.wifi_prompt);
super.showDialog(this, message, R.string.wifi_setting,
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,
int which) {
if (dialog != null) {
dialog.dismiss();
}
currentProduct = product;
isViewRequest = true;
startActivity(new Intent(
android.provider.Settings.ACTION_WIRELESS_SETTINGS));
}
}, R.string.back, dismissDialogListener);
} else {...}
而到了简历:
@Override
protected void onResume() {
// After setting wifi
if (isViewRequest) {
...//mycode
}
super.onResume();
}
我的问题是,当我做了设置无线网络连接,然后按返回键。 这回我的电话的菜单画面,不会恢复myActivity。 只有当我之后再次启动我的应用程序,执行的onResume()函数。
那么,什么是我缺少的wifi设置后,回到我的应用程序?