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
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));
}
}