2016-01-29 android android给listview的item设定高度 在item的layout文件中,用android:layout_height设置item的高度。运行,高度设置无效。 解决办法: 给item设定minHeight,即可. 12345678910111213<?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="fill_parent" android:minHeight="?android:attr/listPreferredItemHeight" > <TextView android:id="@+id/tv" android:layout_width="fill_parent" android:layout_height="20dp" android:text="@string/hello" /></LinearLayout> 前一篇 Android的多语言实现 后一篇 ListView与RadioButton组合——自定义单选列表