list view item高度设置

如何设置list view中的item的高度呢?

示例如下:

    android:layout_width="match_parent"

    android:layout_height="@dimen/buy_list_item_height" > //直接在这里设置高度是不会生效的。

 

  具体的item 内容 —>

 

 

按照如下修改: 

 

    android:layout_width="match_parent"

    android:layout_height="match_parent" >

 

   

        android:layout_width="match_parent"

        android:layout_height="@dimen/buy_list_item_height" // 再增加一层即可设置高度

        android:layout_gravity="center_horizontal" >

    具体的 item内容  —>

   

 

 

另外,如何避免 list view adapter反复getivew?

list view在layout种设置时width/height 为match_parent. 或者为指定的大小。 如果使用wrap_content的话,就很又可能导致反复get view.

 

你可能感兴趣的:(list view item高度设置)