vote up 1 vote down star

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, 
    	ContextMenuInfo menuInfo){

    super.onCreateContextMenu(menu, v, menuInfo);
    menu.add(0, DELETE_ID, 0, R.string.context_menu_favorite)
    	.setIcon(android.R.drawable.btn_star);    	
}
flag

1 Answer

vote up 1 vote down check

Context menus do not support icons.

Note: Context menu items do not support icons or shortcut keys.

link|flag
This is exactly in android document. thanks! – Dennie Aug 8 at 1:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.