SyntaxFix
Write A Post
Hire A Developer
Questions
I have a Toolbar in my Activity and a Base Activity that overrides all Titles. So I had to use setTitle in onResume() in the Activity like so:
@Override protected void onResume() { super.onResume(); toolbar.setTitle(R.string.title); }