How do you remove the title text from the Android

2019-01-10 02:55发布

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?

20条回答
冷血范
2楼-- · 2019-01-10 03:57

I'm very new to Android so correct me if I'm wrong, but I think if you decide to use navigation tabs on the Action Bar, they seemed to not be completely left aligned because the title text color is only transparent and hasn't gone away.

<style name="CustomActionBarStyle" parent="@android:style/Widget.Holo.ActionBar">
     <item name="android:displayOptions">useLogo|showHome</item>
</style>

worked for me.

查看更多
女痞
3楼-- · 2019-01-10 03:57

Use the following:

requestWindowFeature(Window.FEATURE_NO_TITLE);
查看更多
登录 后发表回答