Open wireless settings from app

前端 未结 6 900
小鲜肉
小鲜肉 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:09

    Use Following Function For Open WI_FI Settings

    private void openWifi() {
        Intent intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS);
        startActivity(intent);
    }
    

提交回复
热议问题