标签: android android-intent
我想在我的应用启动时查看是否有互联网连接。 如果没有互联网访问,我会向用户提示此对话框:
一旦用户点击“打开移动网络的设置”,我想要 启动“数据使用”活动:
Intent intent = new Intent(android.provider.Settings.ACTION_NETWORK_OPERATOR_SETTINGS);
任何想法或解决方法?
答案 0 :(得分:0)
我找到了
Intent intent = new Intent(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS);
导致此活动:
诀窍......
答案 1 :(得分:0)
试试这个。
Intent intent = new Intent(Intent.ACTION_MAIN); intent.setClassName("com.android.phone", "com.android.phone.NetworkSetting"); startActivity(intent);