I'm trying to change the default color for the options menu which is white. I want a black background for every item on the options menu. I've tried some shoots like android:itemBackground="#000000" on the item element within the menu element but it doesn't work. I don't know if this is doable or not. Any idea would be welcome! :)
|
feedback
|
|
For Android 2.3 this can be done with some very heavy hacking: The root cause for the issues with Android 2.3 is that in LayoutInflater the mConstructorArgs[0] = mContext is only set during running calls to
(Feel free to vote for this Answer ;) ) I tested it to work on Android 2.3 and to still work on earlier versions. If anything breaks again in later Android versions you'll simply see the default menu-style instead | ||||
|
feedback
|
|
The style attribute for the menu background is Despite what the documentation says, it needs to be a resource (e.g. This will also get rid of the item borders that I was unable to change or remove using primalpop's solution. As for the text color, I haven't found any way to set it through styles in 2.2 and I'm sure I've tried everything (which is how I discovered the menu background attribute). You would need to use primalpop's solution for that. | |||||
feedback
|
|
This is clearly a problem that a lot of programmers have and to which Google has yet to provide a satisfactory, supported solution. There are a lot of crossed intentions and misunderstandings floating around posts on this topic, so please read this whole answer before responding. Below I include a more "refined" and well-commented version of the hack from other answers on this page, also incorporating ideas from these very closely related questions: Change background color of android menu Change the background color of the options menu Android: customize application's menu (e.g background color) http://www.macadamian.com/blog/post/android_-_theming_the_unthemable/ Android MenuItem Toggle Button Is is possible to make the Android options menu background non-translucent? http://www.codeproject.com/KB/android/AndroidMenusMyWay.aspx Setting the menu background to be opaque I tested this hack on 2.1 (simulator), 2.2 (2 real devices), and 2.3 (2 real devices). I don't have any 3.X tablets to test on yet but will post any needed changes here when/if I do. Given that 3.X tablets use Action Bars instead of Options Menus, as explained here: http://developer.android.com/guide/topics/ui/menus.html#options-menu this hack will almost certainly do nothing (no harm and no good) on 3.X tablets. STATEMENT OF THE PROBLEM (read this before trigger-replying with a negative comment): The Options menu has vastly different styles on different devices. Pure black with white text on some, pure white with black text on some. I and many other developers wish to control the background color of the Options menu cells as well as the color of the Options menu text. Certain app developers only need to set the cell background color (not the text color), and they can do this in a cleaner manner using the android:panelFullBackground style described in another answer. However, there is currently no way to control the Options menu text color with styles, and so one can only use this method to change the background to another color that won't make the text "disappear." We would love to do this with a documented, future-proof solution, but one is simply not available as of Android <= 2.3. So we have to use a solution that works in current versions and is designed to minimize the chances of crashing/breaking in future versions. We want a solution that fails gracefully back to the default behavior if it has to fail. There are many legitimate reasons why one may need to control the look of Options menus (typically to match a visual style for the rest of the app) so I won't dwell on that. There is a Google Android bug posted about this: please add your support by starring this bug (note Google discourages "me too" comments: just a star is enough): http://code.google.com/p/android/issues/detail?id=4441 SUMMARY OF SOLUTIONS SO FAR: Several posters have suggested a hack involving LayoutInflater.Factory. The suggested hack worked for Android <= 2.2 and failed for Android 2.3 because the hack made an undocumented assumption: that one could call LayoutInflater.getView() directly without currently being inside a call to LayoutInflater.inflate() on the same LayoutInflater instance. New code in Android 2.3 broke this assumption and led to a NullPointerException. My slightly refined hack below does not rely on this assumption. Furthermore, the hacks also rely on using an internal, undocumented class name "com.android.internal.view.menu.IconMenuItemView" as a string (not as a Java type). I do not see any way to avoid this and still accomplish the stated goal. However, it is possible to do the hack in a careful way that will fall back if "com.android.internal.view.menu.IconMenuItemView" does not appear on the current system. Again, understand that this is a hack and by no means am I claiming this will work on all platforms. But we developers are not living in a fantasy academic world where everything has to be by the book: we have a problem to solve and we have to solve it as best we can. For example, it seems unlikely that "com.android.internal.view.menu.IconMenuItemView" will exist on 3.X tablets since they use Action Bars instead of Options Menus. Finally, some developers have solved this problem by totally suppressing the Android Options Menu and writing their own menu class (see some of the links above). I haven't tried this, but if you have time to write your own View and figure out how to replace Android's view (I'm sure the devil's in the details here) then it might be a nice solution that doesn't require any undocumented hacks. HACK: Here is the code. To use this code, call addOptionsMenuHackerInflaterFactory() ONCE from your activity onCreate() or your activity onCreateOptionsMenu(). It sets a default factory that will affect subsequent creation of any Options Menu. It does not affect Options Menus that have already been created (the previous hacks used a function name of setMenuBackground(), which is very misleading since the function doesn't set any menu properties before it returns).
Thanks for reading and enjoy! | |||||
feedback
|
|
One thing to note that you guys are over-complicating the problem just like a lot of other posts! All you need to do is create drawable selectors with whatever backgrounds you need and set them to actual items. I just spend two hours trying your solutions (all suggested on this page) and none of them worked. Not to mention that there are tons of errors that essentially slow your performance in those try/catch blocks you have. Anyways here is a menu xml file:
Now in your item1_selector:
Next time you decide to go to the supermarket through Canada try google maps! | |||||||||||||
feedback
|
| |||||||||||||
feedback
|
|
Thanks Marcus! It works on 2.3 smoothly by fixing some syntax errors, here's the fixed code
| |||||
feedback
|
this is XML file
| ||||
|
feedback
|
|
This solution doesn't seem to work if you have to call the method | ||||
|
feedback
|