Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android getView方法不執行的一個原因是布局文件中沒有給列表顯示的位置

android getView方法不執行的一個原因是布局文件中沒有給列表顯示的位置

編輯:關於Android編程

一個原因是布局文件中,沒有給列表顯示的位置。

例如:下面的布局

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" />

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方法。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved