I have FloatingActionButton in my App: https://i.stack.imgur.com/iOj2C.jpg witch have configuration in according with image from link above.
In my app user can change the colour of this FloatingActionButton by clicking on this button.
fabUP = findViewById(R.id.fab_dwn);
fabUP.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Saving mode", Snackbar.LENGTH_LONG).setAction("SAVE", null).show();
fabDOWN.setBackgroundTintList(ColorStateList.valueOf(getResources().getColor(R.color.FLOAT_dark_GREEN)));
fabUP.setBackgroundTintList(ColorStateList.valueOf(getResources().getColor(R.color.FLOAT_bright_RED)));
SAVE=true;
}
});
I would like to save the colour of this button on onSaveInstanceState method and set on onRestoreInstanceState method.
@Override
protected void onSaveInstanceState(@NonNull Bundle outState) {
super.onSaveInstanceState(outState);
//here I would like to save the colour of my FloatingActionButton
}
@Override
protected void onRestoreInstanceState(@NonNull Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
if(savedInstanceState!=null)
{
//and here I would like to set the colour of my FloatingActionButton
}
}
How to do this?
You can use: