我的列表项布局有问题,我无法理解。我将列表项的高度设置为70dp,但如果我只有总高度为40dp的内容,它将自动忽略我用android:layout_height设置的值,而是使用看起来像wrap_content作为高度。
如果我在列表之外使用exakt相同的布局,它可以按预期工作。
下面是我的一个列表中列表项的布局。<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="70dip"
android:layout_width="fill_parent">
<TextView android:id="@+id/name"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
style="@style/NormalText"/>
<TextView android:id="@+id/description"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
style="@style/VerySmallLightText"/></LinearLayout>
编辑我的xml以更好地反映我的代码。我在风格中有一些属性,这就是为什么我在这里手动绑定它时意外地输入错误。
答案 0 :(得分:1)
您是否尝试过线性布局的layout_height而不仅仅是高度?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="70dp"*
android:layout_width="fill_parent">
答案 1 :(得分:0)
你的linearlayout属性如下 android:height ='70dip'是否可以通过IDE检查?