设置具有特定高度的列表视图项

时间:2012-08-08 13:32:46

标签: android xml listview height

我想调整列表视图中具有特定高度的项目。

enter image description here

我做的适配器:?android:attr / listPreferredItemHeight ,当listview的高度为 fill_parent 时效果很好。

<TextView
    android:id="@+id/FirstText"
    android:layout_width="wrap_content" 
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:layout_weight="1"
    android:gravity="center_vertical"
    android:paddingBottom="10dip"
    android:paddingLeft="6dip"
    android:paddingTop="12dip"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textSize="18dip"
    android:textColor="#000000" />

<ListView
    android:id="@+id/android:list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:cacheColorHint="#ffffff"
    android:divider="#4436f2"
    android:dividerHeight="1px"
    android:scrollbars="none"
    android:fadingEdge="none"/>

但是当listview的高度是特定大小时,不符合项目。

enter image description here

<ListView
    android:id="@+id/android:list"
    android:layout_width="fill_parent"
    android:layout_height="200sp"
    android:background="#ffffff"
    android:cacheColorHint="#ffffff"
    android:divider="#4436f2"
    android:dividerHeight="1px"
    android:scrollbars="none"
    android:fadingEdge="none"/>

如何使用特定列表视图调整项目的高度?

1 个答案:

答案 0 :(得分:0)

最好使用自定义适配器,你可以做你想做的事情