码迷,mamicode.com
首页 > 移动开发 > 详细

android getView方法不执行的一个原因是布局文件中没有给列表显示的位置

时间:2015-02-26 11:45:36      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

一个原因是布局文件中,没有给列表显示的位置。

例如:下面的布局

<com.xxx.view.BaseListView
        android:id="@+id/list_find"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:cacheColorHint="@android:color/transparent"
        android:divider="@drawable/base_horizontal_line"
        android:dividerHeight="1dp"
        android:fadingEdgeLength="0dp"
        android:fastScrollEnabled="true"
        android:paddingBottom="10dp" />
    
    <com.xxx.view.BaseListView
        android:id="@+id/list_article"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:cacheColorHint="@android:color/transparent"
        android:divider="@drawable/base_horizontal_line"
        android:dividerHeight="1dp"
        android:fadingEdgeLength="0dp"
        android:fastScrollEnabled="true"
        android:paddingBottom="10dp" />

第一个名字是list_find的View高度是match_parent,已经把空间占满,导致第一个名字为list_article的View没有显示的空间,这样就导致这个View不执行getView方法,数据显示不出来。


另外如果view的getCount结果为0,也不执行getView方法。

android getView方法不执行的一个原因是布局文件中没有给列表显示的位置

标签:

原文地址:http://blog.csdn.net/wletv/article/details/43950999

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!