0

我怎样才能创建一个对象,以便我可以得到该项目。我找到了一个例子说

    Object item2 = getListView().getAdapter().getItem(holder.position); 

创建对象,但在我的课堂上有所不同,你能帮我找出我需要这个对象的原因吗

这是我的课。我该怎么做:

我需要这个对象来做一些功能。

4

1 回答 1

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);
于 2012-12-18T19:20:58.097 回答