I am trying to change the color of a MenuItem from white to red permanently from fragment. In the fragmentselected (FragmentA) it changes color, but when I go to FragmentB it returns to white again. This is the code on fragmentselected
@Override
public void onPrepareOptionsMenu(Menu menu) {
super.onPrepareOptionsMenu(menu);
Drawable drawable= menu.getItem(0).getIcon();
drawable.setColorFilter(getResources().getColor(R.color.colorAccent), PorterDuff.Mode.SRC_ATOP);
}