I have a Listview with a ContextMenu, but when I setIcon for ContextMenu look like it doesn\'t work
public void onCreateContextMenu(ContextMenu menu , View v
While the Android API does not allow for Icons in Context menus you can see many places where Android is using them. Long pressing your home screen is one good example.
I took the time to dig through the Launcher and AnyCut source and found that Google is using their own custom class that extends a BaseAdapter along with their own custom layout.
I was able to copy their class and layout almost exactly and use it in my own app to accomplish. The class if you want to search for it is called AddAdapter.java.
Enjoy!