I'm looking through the Holo.Light
theme, and I can't seem to find the magic style to override to get rid of the title text that briefly shows up when my app first launches.
How can I do that?
I'm looking through the Holo.Light
theme, and I can't seem to find the magic style to override to get rid of the title text that briefly shows up when my app first launches.
How can I do that?
hope this will help
I think this is the right answer:
In your Manifest
Simply extends your java file from
AppCompatActivity
and do this:You can change the style applied to each activity, or if you only want to change the behavior for a specific activity, you can try this:
To display title on actionbar, set display options in onCreate()
To hide title on actionbar.
Details here.