activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:lay...
分类:
其他好文 时间:
2015-08-13 12:18:59
阅读次数:
86
需要了解的内容1. listview中的getItemAtPosition与Adapter的getItem的position的区别 listView中的getItemAtPosition的源码实现: 1 /** 2 * Gets the data associated with the spec.....
分类:
移动开发 时间:
2014-12-21 23:33:26
阅读次数:
317
通过intent传递数据时,使用以下代码报错:
hMap map=(Map) parent.getItemAtPosition(position);
intent.putExtra("userInfoMap", map);
但是使用以下的代码是正常的:
HashMap map=(HashMap) parent.getItemAtPosition(position);
inte...
分类:
移动开发 时间:
2014-09-14 23:42:07
阅读次数:
737