Redefined the onCreateContextMenu method onCreateContextMenu the heir of the ListFragment like this:
@Override public void onCreateContextMenu(ContextMenu contextMenu, View view, ContextMenu.ContextMenuInfo info) { super.onCreateContextMenu(contextMenu, view, info); contextMenu.setHeaderTitle("Test"); contextMenu.add("Example"); } But I found only methods that allow you to create a context menu with text only. And how to make it possible to present the menu item as ImageView + TextView ? In the interface android.view.Menu , it seems there is no possibility for this.