0

我正在为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>

我不希望更改活动代码来完成此操作。

4

2 回答 2

0

你用的是哪个主题?这可能在values-v11or中定义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>
于 2013-05-25T17:13:30.650 回答
0

你试过这个吗,

在你的 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>

让我知道这个是否奏效。

于 2013-05-25T19:57:07.510 回答