tags:

views:

19

answers:

2

Is there a way to change the context menu look and feel? I want to add my own background, list item seperator and maybe the selector as well. I want to change it in famework so that i will get the customised menu every where i will use it.

Can someone point me in the right direction? As far as I could make out - Context menu is just an alert dialog with a list. Am I right? How can i change the look and feel and from where?

A: 

You will more than likely have to look up that class java file in the android kernel repo and modify it to get what you want.

Fred Grott
+1  A: 

Be tricky: I have done that by starting an activity with the dialog theme instead of inflating a context menu in onCreateContextMenu. So you can style it the way you want.

WarrenFaith