我正在为Android 3.0+开发一个应用程序,我想通过删除标题来个性化操作栏,这是我可以完成的,我的问题是我也失去了操作栏的背景,我只是想删除标题并保留剩余的样式。以下是我目前使用的:
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:actionBarStyle">@style/ActionBarNoTitle</item>
</style>
<style name="ActionBarNoTitle" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:displayOptions">showHome|useLogo</item>
</style>
</resources>
我宁愿不改变活动代码来完成这个
您使用的是哪个主题?这可能是在values-v11
或values-v14
中定义的。如果Theme.Holo.Light
,则必须将actionBarStyle
的父样式更改为Widget.Holo.Light.ActionBar.Solid
。
<style name="ActionBarNoTitle" parent="@android:style/Widget.Holo.Light.ActionBar.Solid">
<item name="android:displayOptions">showHome|useLogo</item>
</style>
你试过了吗,
在theme.xml文件中定义这个
<style name="CustomActionBar" parent="android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/CustomActionBarStyle</item>
</style>
在style.xml文件中定义这个
<style name="CustomActionBarStyle" parent="android:style/Widget.Holo.ActionBar">
<item name="android:titleTextStyle">@style/NoTitleText</item>
<item name="android:subtitleTextStyle">@style/NoTitleText</item>
</style>
<style name="NoTitleText">
<item name="android:textSize">0sp</item>
<item name="android:textColor">#00000000</item>
</style>