android – 可以在xml中将setDisplayShowTitleEnabled设置为主题ActionBar吗?

前端之家收集整理的这篇文章主要介绍了android – 可以在xml中将setDisplayShowTitleEnabled设置为主题ActionBar吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在xml而不是代码主题化ActionBar.到目前为止我有这个:
<style name="TestTheme" parent="android:Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/TestActionBar</item>
</style>

<style name="TestActionBar" parent="android:style/Widget.Holo.Light.ActionBar">
    <item name="android:background">@drawable/actionbar_background</item>
</style>

这是给我我的自定义背景,我想要能够关闭这里的标题.在代码中,我将setDisplayShowTitleEnabled设置为false.如何在xml中执行?

解决方法

好的,这里是答案.将其添加到上面的第二个样式块中,隐藏标题.
<item name="android:displayOptions">showHome|uselogo</item>
原文链接:https://www.f2er.com/android/311957.html

猜你在找的Android相关文章