Android ListView小部件(2.2)具有默认行为,可在ListView滚动时收缩所有子视图。
我想禁用此行为,不要缩小子视图,以便它们始终保持相同的大小 - 我该怎么做?
答案 0 :(得分:-1)
我使用从以下位置膨胀的视图以编程方式填充ListView:
< RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="fill_parent">
<ImageView android:id="@+id/actionitem_image"
android:layout_centerVertical="true" android:layout_width="40dp"
android:layout_height="40dp" android:scaleType="center" />
<TextView android:layout_height="wrap_content" android:id="@+id/actionitem_title"
android:layout_toRightOf="@+id/actionitem_image" android:textColor="@color/white"
android:text="TITLE" android:textSize="14dp" android:layout_width="fill_parent" />
<TextView android:layout_height="wrap_content"
android:layout_toRightOf="@+id/actionitem_image" android:layout_below="@+id/actionitem_title"
android:id="@+id/actionitem_subtitle" android:text="Sub Title"
android:textSize="12dp" android:layout_width="fill_parent" />
<TextView android:layout_height="wrap_content"
android:layout_toRightOf="@+id/actionitem_image" android:layout_below="@+id/actionitem_subtitle"
android:id="@+id/actionitem_infoa" android:textSize="10dp"
android:layout_width="fill_parent" />
<TextView android:layout_height="wrap_content"
android:layout_toRightOf="@+id/actionitem_image" android:layout_below="@+id/actionitem_infoa"
android:id="@+id/actionitem_infob" android:textSize="10dp"
android:layout_width="fill_parent" />
<TextView android:layout_height="wrap_content"
android:layout_toRightOf="@+id/actionitem_image" android:id="@+id/actionitem_infoc"
android:layout_below="@+id/actionitem_infob" android:textSize="10dp"
android:layout_width="fill_parent" />
<TextView android:layout_height="wrap_content"
android:layout_toRightOf="@+id/actionitem_image" android:id="@+id/actionitem_infod"
android:layout_below="@+id/actionitem_infoc" android:textSize="10dp"
android:layout_width="fill_parent" />
</RelativeLayout>
每当列表滚动时,会出现奇怪的行为,其中一些视图会缩小。