1. 程式人生 > >Android中設定ListView的item高度無效--解決方案

Android中設定ListView的item高度無效--解決方案

原文地址:https://blog.csdn.net/zhonglinliu/article/details/54580622

 

問題:

     ListView的使用中,item是在adapter中用來顯示每一個小條目的資料結構,也是一個xml檔案,應用非常靈活和廣泛,這裡說一個經常遇到的問題,對於剛接觸Android的朋友應該會有疑惑,就是設定ListView的item高度無效

 

解決方案:

        其實非常簡單,我們只需要在xml檔案中給item設定一個minHeight就搞定啦!,如下:

         這個item的高度就是200dp.

 

    <?xml version="1.0" encoding="utf-8"?>  
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
        android:orientation="horizontal"  
        android:layout_width="fill_parent"  
        android:layout_height="50dip"  
        android:minHeight="200dp"  
        >  
        <TextView  
            android:id="@+id/tv"  
            android:layout_width="fill_parent"   
            android:layout_height="20dp"   
            android:text="@string/hello"  
            />  
    </LinearLayout>