How do you set the title color for the new Toolbar?
Option 1) The quick and easy way (Toolbar only) Since appcompat-v7-r23 you can use the following attributes directly on your Toolbar or its style: app:titleTextColor=”@color/primary_text” app:subtitleTextColor=”@color/secondary_text” If your minimum SDK is 23 and you use native Toolbar just change the namespace prefix to android. In Java you can use the following methods: toolbar.setTitleTextColor(Color.WHITE); toolbar.setSubtitleTextColor(Color.WHITE); These … Read more