How do I exclude a title from a theme applied to an app?

I am using a theme for my application to set some common layout features.

One of the things I change in this thread is the text style. I change the color and size of the text throughout the application. Unfortunately, the text in the title also changes and the result is a somewhat blurry ugly style. I don't know if this is the color or size of the text

Is there any way to rewrite the style of the title in the theme? Or exclude the title?

+2


a source to share


3 answers


Could you just set the title color separately programmatically using the setTitleColor method of the Windows class?



So, you can overwrite the color you set in the theme file

+1


a source


can you go full screen: Hide title in full screen?

or



have a custom title bar

Custom title bar without padding (Android)

+1


a source


Just turn off the header:

requestWindowFeature(Window.FEATURE_NO_TITLE); 

      

Did I miss something?

0


a source







All Articles