Android样式弹出菜单被忽略

时间:2013-07-03 12:33:46

标签: android

要更改PopupMenu颜色,我尝试以这种方式定义我的应用程序中编辑样式文件的自定义主题

我的V11和v14的styles.xml就是这个

<resources>

    <!--
        Base application theme for API 14+. This theme completely replaces
        AppBaseTheme from BOTH res/values/styles.xml and
        res/values-v11/styles.xml on API 14+ devices.

    -->
    <style name="AppBaseTheme" parent="android:Theme.NoTitleBar">

        <!-- API 14 theme customizations can go here. -->
        <item name="android:popupMenuStyle">@style/MyPopupMenu</item>
        <item name="android:dropDownListViewStyle">@style/MyDropDownListView</item>
          <item name="android:actionDropDownStyle">@style/MyDropDownNav</item>
    </style>

    <!-- style the list navigation -->
    <style name="MyDropDownNav" parent="android:style/Widget.Holo.Light.Spinner">
        <item name="android:background">#ffffff</item>
        <item name="android:popupBackground">#8044ff</item>
        <item name="android:dropDownSelector">#ff7700</item>
    </style>

    <!-- style the overflow menu -->
    <style name="MyPopupMenu" parent="android:style/Widget.Holo.Light.ListPopupWindow">
        <item name="android:popupBackground">#8044ff</item>
    </style>

    <!-- style the items within the overflow menu -->
    <style name="MyDropDownListView" parent="android:style/Widget.Holo.ListView.DropDown">
        <item name="android:listSelector">#8044ff</item>
    </style>

</resources>

清单中的活动

  <activity
            android:name=".Home"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@style/AppBaseTheme" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

不幸的是,所有这些自定义都被忽略了。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

在活动代码中使用您想要的主题名称。

目前你使用的是android:theme =“@ style / AppBaseTheme”

而不是使用android:theme =“@ style / your_theme_name”

其中your_theme_name可能是:MyDropDownNav或MyPopupMenu或MyDropDownListView。