I need my toolbar to be transparant but only in one activity/fragment. I know that this is the way to do it:
toolbar.getBackground().setAlpha(0);
But it changes the toolbar also for the other fragments. Is there an alternative or a way to make it only applicable for one fragment.
This way I need to set the toolbar's alpha back in every activity/fragment.:
toolbar.getBackground().setAlpha(255);
Is this the only way or?
Regards,