如何打开热点和网络共享设置屏幕,然后以编程方式打开安全弹出屏幕?

时间:2019-03-07 07:53:58

标签: android hotspot tethering

在这里,我只想通过单击按钮打开“热点和网络共享”屏幕,以便用户可以手动创建“热点”。我已经搜索了很多内容,但没有找到去该屏幕的任何隐式意图。还可以打开用户可以在其中写出网络名称和安全详细信息的弹出窗口吗?如果是,那怎么办?

1 个答案:

答案 0 :(得分:1)

这应该有效:

final Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
final ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.TetherSettings");
intent.setComponent(cn);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

但是,取决于实际设备,三星,LG,索尼可能有所不同。