PullToRefreshListView不显示

来源:互联网 发布:bernsen二值化算法 编辑:程序博客网 时间:2024/05/17 01:37

犯了一个非常低级的错误,而且在网上找了好久都没有找到答案。

[html] view plain copy
  1. <com.handmark.pulltorefresh.library.PullToRefreshListView  
  2.     android:id="@+id/ptrflv_hotCommodity"  
  3.         android:layout_width="match_parent"  
  4.         android:layout_height="wrap_content"  
  5.         android:padding="5dp"/>  
添加了这个组件,但就是不显示,上拉没反应,从服务器端加载下来的数据也不显示。搞了好久,最后发现是
[html] view plain copy
  1. android:layout_height="wrap_content"  
的问题,把wrap_content改成match_parent就好了。
0 0