I've a option in my Preference Screen to changing the ActionBar
background color.
It works, but by changing the color, I must close and reopen the app to see the changes.
I have to put the ActionBar
color changing code in onResume
. But onResume
not called by onBackPressed
.
Here is my code:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_chat);
Misc.setActionBarColor(getActionBar(), null);
}