本文介绍了单击ListView时获取项目的名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用"onItemLongClickListiner"时,有什么方法可以捕获在列表视图中单击的项目的名称?我知道我可以取得职位等,但是我需要一个名字
Is there any way I can capture a name of an item clicked in a list view when using "onItemLongClickListiner" ? I know I can capture position etc but I need a name
推荐答案
我想您ListView
充满了String对象:
I suppose that you ListView
is filled up with String object:
public boolean onItemLongClick (AdapterView<?> parent, View view, int position, long id) {
String name = (String) parent.getItemAtPosition(position);
}
AdapterView.getItemAtPosition(position)获取与列表中指定位置关联的数据.
AdapterView.getItemAtPosition(position) gets the data associated with the specified position in the list.
这篇关于单击ListView时获取项目的名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!