how to open configure portable Wi-Fi hotspot setting by onclick?

前端 未结 4 873
时光取名叫无心
时光取名叫无心 2020-12-19 16:51

how to open the following directory:settings/wireless and networks/Tethering and portable hotspot/portable Wi-Fi hotspot settings/configure portable Wi-Fi hotspot/ on butto

4条回答
  •  醉梦人生
    2020-12-19 17:10

    use "button" instead of "RadioButton"

    in layout try this:

    in activity.java try this :

    public class MainActivity extends Activity {
    
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    
    
    public void togglewifi(View view){
    
        startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS));
    
    
    }
    }
    

提交回复
热议问题