Im making an application where users are able to enable/disable the vibration of the phone. For this, I put a switch. Here is my code:
public class settings extends Activity {
public static boolean vibrationOnOff;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_settings);
final Switch tButton = (Switch) findViewById(R.id.vibration);
tButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
if(isChecked){
tButton.setChecked(true);
vibrationOnOff = true;
}else{
tButton.setChecked(false);
vibrationOnOff = false;
}
}
});
}
}
My question: everytime when I start this activity, the switch button is always isChecked()/always on. When I uncheck the switch and go back to another acvitiy and open settins activity again, it is isChecked again.
How can I solve this?
Here is a similar question, but it did not solve my problem: Android ToggleButton always check
You could do the following;