gpt4 book ai didi

android - 如何直接在无线和网络页面上启动设置?

转载 作者:可可西里 更新时间:2023-11-01 18:54:57 26 4
gpt4 key购买 nike

我将要构建自己的对话框来通知用户该应用程序无法连接到互联网,并且我打算在其上放置两个按钮。设置和取消,就像在许多其他应用程序中看到的那样。

我现在想知道,如何直接在“无线和网络”页面上启动设置?

最佳答案

/**
* Display a dialog that user has no internet connection
* @param ctx1
*
* Code from: http://osdir.com/ml/Android-Developers/2009-11/msg05044.html
*/
public static void showNoConnectionDialog(Context ctx1) {
final Context ctx = ctx1;
AlertDialog.Builder builder = new AlertDialog.Builder(ctx);
builder.setCancelable(true);
builder.setMessage(R.string.no_connection);
builder.setTitle(R.string.no_connection_title);
builder.setPositiveButton(R.string.settings, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
ctx.startActivity(new Intent(Settings.ACTION_WIRELESS_SETTINGS));
}
});
builder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
return;
}
});
builder.setOnCancelListener(new DialogInterface.OnCancelListener() {
public void onCancel(DialogInterface dialog) {
return;
}
});

builder.show();
}

关于android - 如何直接在无线和网络页面上启动设置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2817931/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com