嗨,我有数据的数组列表..我想在数组列表的每个字段上实现OnItemLongClickListener。尝试用OnGestureListener实现,
如有任何建议,我们将不胜感激
发布于 2012-11-07 21:46:46
您可以使用列表视图来执行此操作。检查http://developer.android.com/guide/topics/ui/layout/listview.html
listView.setOnItemLongClickListener (new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView parent, View view, int position, long id) {
//do your stuff here
}
});https://stackoverflow.com/questions/13271035
复制相似问题