犯了一个非常低级的错误,而且在网上找了好久都没有找到答案。
<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/ptrflv_hotCommodity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"/>
添加了这个组件,但就是不显示,上拉没反应,从服务器端加载下来的数据也不显示。搞了好久,最后发现是
android:layout_height="wrap_content"
的问题,把wrap_content改成match_parent就好了。