gpt4 book ai didi

java - AdapterView.AdapterContextMenuInfo 为空

转载 作者:太空宇宙 更新时间:2023-11-04 12:23:01 27 4
gpt4 key购买 nike

这是我的问题,我有这样的类架构:

  • Activity
    • fragment
      • RecyclerView(有一个适配器)

适配器:

  • 有一个 ViewHolder 类:

    public static class NoteViewHolder extends RecyclerView.ViewHolder
    implements View.OnCreateContextMenuListener{
    TextView noteName;

    public NoteViewHolder(View itemView) {

    super(itemView);
    noteName = (TextView)itemView.findViewById(R.id.note_name);
    itemView.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {/**/}
    });
    itemView.setOnCreateContextMenuListener(this);

    }

    @Override
    public void onCreateContextMenu(ContextMenu contextMenu, View view,
    ContextMenu.ContextMenuInfo contextMenuInfo) {

    contextMenu.setHeaderTitle("Select The Action");
    contextMenu.add(0,666,0,"Delete Note");
    }

    }

fragment

overrrides onContextItemSelected(MenuItem item){
//info is null
AdapterView.AdapterContextMenuInfo info =
(AdapterView.AdapterContextMenuInfo) item.getMenuInfo();
}

它也调用

    registerForContextMenu(recyclerView);

序列

  1. 我长按 NoteViewHolder,它会打开上下文菜单
  2. 我选择“删除”
  3. 使用 contextMenuInfo == null 调用 OnCreateContextMenu
  4. onSelectedContextItem 通过 item.getMenuInfo() == null 调用

如何使 menuInfo 不为空?

我应该自己创建菜单信息吗?如果是的话,在哪里?

PS,我看过这篇文章:How to create context menu for RecyclerView ,我没有看到这个问题的答案

PS2 我也读过这个:http://androidheight.blogspot.fr/2015/03/recyclerview-widget-example-in-android.html ,对我来说, new RecyclerAdapter().info = menuInfo; 行似乎是错误的

谢谢

最佳答案

您需要在 RecyclerView 上的 Activity 中调用 registerForContextMenu()

关于java - AdapterView.AdapterContextMenuInfo 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38635816/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com