真的很愚蠢,但我想为我的列表视图设置一个最大高度,但我似乎找不到有用的东西。有人谈论为列表视图设置最大高度,但我找不到这个选项?我现在有
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="40dp" >
<ListView
android:id="@+id/lvSwitch"
android:layout_width="fill_parent"
android:layout_height="120dp" >
</ListView>
</LinearLayout>
但是当列表中只有一项时,它的高度仍然是 120dp,当然这不是必需的,它只是不能超过那个高度......