Android: customize application's menu (e.g background color)
android, android-menu, customization
Solution
Not with the built-in menu framework.
You are welcome to intercept the MENU button (via `onKeyDown()` or something) and render what you want, but bear in mind that users will be expecting it to look like the rest of the menus do on their device.
Problem
What is the way (if there is a way) to customize the menu (the one triggered by the MENU button of the phone). I'm especially interested in two things: - changing the background color from the standard light gray into a darker gray - how the menu items are aligned. I have 4 items and they are automatically aligned 2x2, but I would prefer to have them all in one line (1x4)