我正在尝试使用文本和图像创建列表视图。填充布局有效,但我layout_height="wrap_content"
对ImageView
. 填充列表后,列表项的高度是图像高度的两倍,图像本身下方和上方有很多空间。如何避免空白空间并ListItem
在图像周围环绕高度?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/product_preview_product"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:gravity="center" />
<ImageView
android:id="@+id/product_preview_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/product_preview_product" />
</RelativeLayout>
修改后的适配器的getView()
方法:
@Override
public View getView(int position, View convertView,
ViewGroup parent) {
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.product_preview, parent, false);
}
Product product = getItem(position);
TextView productText = (TextView) convertView.findViewById(R.id.product_preview_product);
productText.setText(product.name);
// load image
ImageView imageView = (ImageView) convertView.findViewById(R.id.product_preview_image);
imageView.setImageDrawable(image);
return convertView;
}