1

我想将我自己的自定义操作栏添加到我发现的 Google 的抽屉导航中,问题是,当我尝试打开抽屉时,操作栏然后消失,以及允许我切换抽屉的图标也一去不复返了。当我单击我的下一个片段活动时,它再次消失。我还注意到,如果我将应用程序的主题保留为默认主题,一切正常。

这是我的自定义主题样式类

    <?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
    parent="@android:style/Theme.Holo.Light.DarkActionBar">
    <item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar"
    parent="@android:style/Theme.Holo.Light.DarkActionBar">
    <item name="android:background">#f0f0</item>
</style>
</resources>

显现

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.navigationdrawerexample"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />

<application
    android:label="@string/app_name"
    android:icon="@drawable/ic_launcher"
    android:theme="@android:style/Theme.Holo.Light.DarkActionBar">

    <activity
        android:name=".MainActivity"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>

当它工作时,我使用 @android:style/Theme.Holo.Light.DarkActionBar 作为主题

4

0 回答 0