Open wireless settings from app

前端 未结 6 928
小鲜肉
小鲜肉 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 15:03

    Try this:

    startActivity(new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS));
    

    Or perhaps startActivityForResult. Your call. You can open different settings by checking the constants in Settings

提交回复
热议问题