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.