3

我在这里解析了很多帖子,但没有发现任何像我的问题一样的东西。

基本上我正在尝试打电话openContextMenu(l)onListItemClick这样做会创建一个没有menuInfo. 执行长按将正常工作。执行长按后,我的代码将开始工作,实际上得到一个menuInfo不为空的。

我有一个ListActivity充满了SimpleCursorAdapterSQL.

在我的 onCreate IregisterForContextMenu(getListView())中。我也试过在通话registerForContextMenu(l)前使用。openContextMenu(l)

任何帮助,将不胜感激!谢谢。

这是我的代码示例:

public class MY_Activity extends ListActivity {

...

@Override
public void onCreate(Bundle savedInstanceState) {

    ...

    UpdateTable();
    registerForContextMenu(getListView());
}

...

@Override
public void onListItemClick(ListView l, View view, int position, long id) {
    super.onListItemClick(l, view, position, id);

    //THIS DOESNT WORK UNLESS A LONG CLICK HAPPENS FIRST
    //registerForContextMenu(l);  //Tried doing it here too
    openContextMenu(l);
    //unregisterForContextMenu(l); //Then unregistering here...
}

@Override  
public void onCreateContextMenu(ContextMenu menu, View v,ContextMenuInfo menuInfo) { 
    super.onCreateContextMenu(menu, v, menuInfo);  

    //menuInfo will be null here.

    menu.setHeaderTitle("Context Menu");
    menu.add(0, v.getId(), 0, "One");  
    menu.add(0, v.getId(), 0, "Two");
    menu.add(0, v.getId(), 0, "Three");
}

@Override  
public boolean onContextItemSelected(MenuItem item) {
    AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
    if(info == null) {
        Log.e("","NULL context menu intem info...");
        return false;
    }
}

public void UpdateTable() {
    cursor = DatabaseHelper_Main.GetCursor(my_id);
    cursorAdapter = new SimpleCursorAdapter(this, R.layout.my_listview_entry, 
            cursor, fields, fieldResources, 0);
    setListAdapter(cursorAdapter);
}

...
4

1 回答 1

0

我今天遇到了一个非常相似的问题,修复出乎意料地简单,但我不明白为什么,但无论如何我都会在这里发布。

@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
    m_contextMenu = true;
    registerForContextMenu(parent);
    m_listView.showContextMenuForChild(view);
    unregisterForContextMenu(parent);
    m_contextMenu = false;
}

我使用 m_contextMenu 布尔值来指示正在显示上下文菜单,我有一个 onItemLongClickListener 如果 m_contextMenu 为真则返回 false 以便显示上下文菜单(如果 onItemLongClick() 返回 true,则不会显示上下文菜单)。

于 2015-04-07T19:37:39.923 回答