Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application, certain tasks require a network connection of some kind (either wifi or cellular will do). In MyActivity, I have a check on onResume() to check the network state, and if there is no connection, I would like to display the network settings screen:

private void showConnectionSettings() {
    Intent intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS);
    ComponentName cn = new ComponentName( "com.android.phone", "com.android.phone.Settings" );

    intent.setComponent( cn );
    intent.setFlags( Intent.FLAG_ACTIVITY_NEW_TASK );

    this.getBaseContext().startActivity( intent );
}

Yet this brings me the mobile network screen, when I would like to show Wireless and Network Settings screen where the user can pick their connection type.

share|improve this question
"if there is no connection, I want to display the network settings screen"? Otherwards I don't know what you need. – Gangnus Feb 7 '12 at 19:25

4 Answers

In all honesty if they don't have coverage their only option is to use wifi.

Try this

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.phone", "com.android.phone.NetworkSetting");
startActivity(intent);
share|improve this answer
This just shows a dialog "searching." This is more a matter of displaying the proper settings screen. – Mike D Feb 7 '12 at 21:28
startActivity(new Intent(Settings.ACTION_WIRELESS_SETTINGS));
share|improve this answer

This code works fine for showing up wireless and network settings.

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.android.settings","com.android.settings.WirelessSettings"));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
share|improve this answer

I know this is late but might help someone. The best way to achieve this is

->for showing general connectivity settings,

startActivityForResult(new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS), 0);

-> for showing Mobile network connection settings

startActivityForResult(new 
Intent(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS), 0);

and -> for showing Wifi settings

startActivityForResult(new 
Intent(android.provider.Settings.ACTION_WIFI_SETTINGS), 0);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.