I want to open the Settings-> Wireless & networks directly from my application.
How can I do that?
use the below code to call wireless and networks directly from your application.
Intent intent=new Intent(); intent.setComponent(new ComponentName("com.android.settings", "com.android.settings.WirelessSettings")); startActivity(intent);