为什么以及何时应该使用 getItemId

发布于 2025-01-06 07:17:33 字数 585 浏览 0 评论 0原文

您好,我正在使用一个由 simpleCursorAdapter 填充的列表片段。

onCreateContextMenuonContextItemSelected 我分别需要列表项的名称和 id。我使用这些命令得到了正确的结果:

AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;
String name =  ((Cursor) adapter.getItem(info.position)).getString(1).toString();

)

 ((Cursor) adapter.getItem(info.position)).getInt(0).

查询中的光标首先返回了列 _id 和第二个 name。(解释 getString(1),getInt(0 )。

我的问题是为什么以及何时应该使用 getItemId。我应该得到什么?

hi i am using a list fragment that is populated from a simpleCursorAdapter.

At onCreateContextMenu and onContextItemSelected i need the name of the list item and the id respectively. I am getting the correct results with these commands:

AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;
String name =  ((Cursor) adapter.getItem(info.position)).getString(1).toString();

and

 ((Cursor) adapter.getItem(info.position)).getInt(0).

the cursor from the query has first returned column _id and second name.(explaining getString(1),getInt(0)).

My question is why and when should i use getItemId. What should i get?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文