启动数据使用意图

时间:2015-08-28 16:42:53

标签: android android-intent

我想在我的应用启动时查看是否有互联网连接。 如果没有互联网访问,我会向用户提示此对话框:

No internet connection

一旦用户点击“打开移动网络的设置”,我想要  启动“数据使用”活动:

Data usage activity

我用过 Intent intent = new Intent(android.provider.Settings.ACTION_NETWORK_OPERATOR_SETTINGS); 但它引导我进行这项活动:

Network settings

任何想法或解决方法?

2 个答案:

答案 0 :(得分:0)

我找到了

Intent intent = new Intent(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS);

导致此活动:

enter image description here

诀窍......

答案 1 :(得分:0)

试试这个。

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.phone", "com.android.phone.NetworkSetting");
startActivity(intent);