Open wireless settings from app

前端 未结 6 934
小鲜肉
小鲜肉 2020-12-23 14:41

I want to open the Settings-> Wireless & networks directly from my application.

How can I do that?

6条回答
  •  心在旅途
    2020-12-23 14:48

    You can access the WiFi settings directly using this:

    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.setClassName("com.android.settings", "com.android.settings.wifi.WifiSettings");
    startActivity(intent);
    

    The above did not work on Android 3.0, so I ended up using:

    Intent intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS);
    startActivity(intent);
    

提交回复
热议问题