gpt4 book ai didi

android - 简单的 onListItemClick() 参数

转载 作者:行者123 更新时间:2023-11-29 18:15:14 25 4
gpt4 key购买 nike

我是新来的,所以如果这看起来像是一个愚蠢的问题,请多多包涵。我目前正在使用 onListItemClick 来检索所选 ListItem 的 ID。我对 int position 和 long id 参数之间的区别感到很困惑。是一样的吗?请有人解释一下。先谢谢你。

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
Cursor c = ((SimpleCursorAdapter)l.getAdapter()).getCursor();
c.moveToPosition(position);
int _id = (int)c.getLong(0);
//int _id = (int) id;
String word_id = Integer.toString(_id);

Toast.makeText(this, word_id, Toast.LENGTH_SHORT).show();
}

我打算使用 as simple button 而不是上述方法,但我不知道如何为 Activity 检索 ListView。

最佳答案

l   The ListView where the click happened
v The view that was clicked within the ListView
position The position of the view in the list
id The row id of the item that was clicked

关于android - 简单的 onListItemClick() 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8537368/

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