我想调整列表视图中具有特定高度的项目。
我做的适配器:?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的高度是特定大小时,不符合项目。
<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"/>
如何使用特定列表视图调整项目的高度?
答案 0 :(得分:0)
最好使用自定义适配器,你可以做你想做的事情