如何获得菜单按钮的反色?

时间:2014-03-23 17:05:06

标签: android

我尝试使用Android SDK创建一个连接到菜单按钮的菜单。 结果我有了这个。

http://i.imgur.com/nWznrMT.png

但我想要的不是这个。我喜欢这样的东西完全颠倒第一张照片。 enter image description here

Android清单xml

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.tunghuynh.comparotel"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="10" />

    <uses-permission android:name="android.permission.INTERNET" />


    <application
        android:allowBackup="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name0"
        android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
        <activity
            android:configChanges="orientation"
            android:theme="@style/AppBaseTheme"
            android:name="com.tunghuynh.comparotel.MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.tunghuynh.comparotel.AboutUs"
            android:label="@string/title_activity_about_us" >
                <action android:name="android.intent.action.SEND" />
        </activity>
    </application>

</manifest>

这里是res / values / styles.xml

    <resources xmlns:android="http://schemas.android.com/apk/res/android">

        <style name="CustomProgressBar" parent="android:Widget.ProgressBar.Horizontal">
            <item name="android:indeterminateOnly">false</item>
            <item name="android:progressDrawable">@drawable/custom_progress_bar_horizontal</item>
            <item name="android:minHeight">10dip</item>
            <item name="android:maxHeight">20dip</item>
        </style>

        <style name="myCustomMenuTextApearance" parent="@android:style/TextAppearance.Widget.IconMenu.Item">
            <item name="android:textColor">#00ff00</item>
        </style>
    <style name="AppBaseTheme" parent="android:Theme.Black.NoTitleBar.Fullscreen">
<!--        <item name="android:itemTextAppearance">@style/TextAppearance</item> -->
<!--         <item name="android:itemTextAppearance">@style/myCustomMenuTextApearance</item> -->
<!--         <item name="android:textColor">@color/message_box_text</item> -->
        <!-- <item name="android:panelFullBackground">@drawable/menu_full_bg</item> -->
        <!-- <item name="android:foreground">#000000</item> -->
    </style>

    <style name="TextAppearance">
        <item name="android:textColor">@android:color/black</item>
    </style>
        <drawable name="menu_full_bg">#8a8a8a</drawable>

    </resources>

1 个答案:

答案 0 :(得分:0)

将主题更改为任何灯光主题将为您提供这样的菜单,为此执行此操作并编辑您的清单文件,为标签或特定活动下的应用程序范围指定主题参数设置主题,在所需标签下指定