禁用某些 ListView 项目上的上下文菜单

发布于 2024-12-20 19:57:56 字数 145 浏览 0 评论 0原文

我有一个 ListView ,其中有一个与 ListView 中的每个项目关联的 ContextMenu

是否可以禁用特定项目的ContextMenu

I have a ListView with a ContextMenu associated with each item in the ListView.

Is it possible to disable the ContextMenu for specific items?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灼痛 2024-12-27 19:57:56

我之前也遇到过同样的问题,我的解决方案如下:
我将 ListViewOnItemLongClickListener 设置如下:

private OnItemLongClickListener mBookLongClickListener = new OnItemLongClickListener() {
    @Override
    public boolean onItemLongClick(AdapterView<?> arg0, View view, int id,
            long arg3) {
        showBookDialog(view, id);
        return true;
    }
};

在方法 showBookDialog() 中:根据用户当前的项目,我创建一个 AlertDialog 带有选项列表(类似于菜单)或根本不显示任何内容。

I had the same issue before, following is my solution:
I set my ListView's OnItemLongClickListener as following:

private OnItemLongClickListener mBookLongClickListener = new OnItemLongClickListener() {
    @Override
    public boolean onItemLongClick(AdapterView<?> arg0, View view, int id,
            long arg3) {
        showBookDialog(view, id);
        return true;
    }
};

In the method showBookDialog(): According to the user's current item, I create an AlertDialog with option list(something like menu) or show nothing at all.

椵侞 2024-12-27 19:57:56
override fun onCreateContextMenu(menu: ContextMenu, v: View, menuInfo: ContextMenu.ContextMenuInfo?) {
    if(showContextMenu) {
        // inflate the menu layout
    }
    else {
        return; // this will show noting, but click action will continue
    }
}
override fun onCreateContextMenu(menu: ContextMenu, v: View, menuInfo: ContextMenu.ContextMenuInfo?) {
    if(showContextMenu) {
        // inflate the menu layout
    }
    else {
        return; // this will show noting, but click action will continue
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文