我如何创建一个对象,以便我可以获得该项目。 我找到了一个例子说
Object item2 = getListView().getAdapter().getItem(holder.position);
创建对象,但我的课程中的内容不同 你能帮我找到怎么样吗? 因为我需要对象
这是我的课。我怎么能在这里做到:
我需要对象做一些功能。
答案 0 :(得分:0)
//if you have an instance of the adapter...
int index = 5; //or whatever index you want
HashMap<String,String> mHashMap = adapter.getItem(index);
//if you are inside of the MyCustomAdapter class...
int index = 5;
HashMap<String,String> mHashMap = getItem(index);