0

我的屏幕不显示适合边框的图像超出边框 seeimage http://imgur.com/VMwFMzf 显示 tomoattow 和 cheexz 图像超出框架帮助我如何修复它?我想在边框内显示前两个图像,例如正确显示在边框内的第三个图像面包

    holder.txtText = (TextView) convertView.findViewById(R.id.title2);
    holder.imgThumb = (ImageView) convertView.findViewById(R.id.image2);

    holder.txtText.setText(fifthscreen.Category_name.get(position));
        imageLoader.DisplayImage(fifthscreen.Category_image.get(position),
            activity, holder.imgThumb);


   <com.schoollunchapp.HorizontalListView
           android:id="@+id/listview2"
           android:layout_width="wrap_content"
           android:layout_height="150dp"
             android:layout_below="@+id/test_button_text5"

           android:background="#ffffff"/>


       <?xml version="1.0" encoding="utf-8"?>

     <LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"

   >

    <ImageView
android:id="@+id/image2"
    android:layout_width="90dp"
 android:layout_height="100dp"
 android:scaleType="centerCrop"

 android:paddingRight="5dp"
 android:paddingLeft="5dp"
 android:paddingTop="10dp"
 android:paddingBottom="10dp"
   android:layout_marginLeft="5dp"
   android:layout_marginRight="5dp"
   android:background="@drawable/imagebgborder"
android:src="@drawable/icon"
/>

<TextView
android:id="@+id/title2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000"
   android:padding="15dp"
   android:layout_marginLeft="10dp"
    android:layout_marginRight="5dp"
android:gravity="center_horizontal"
/>



   </LinearLayout>


  <!--imageborder.xml--->


                     <?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 <solid android:color="#FFFFFF" />
<stroke android:width="1dp" android:color="#000000" />
<padding android:left="2dp" android:top="2dp" android:right="2dp" 
  android:bottom="2dp"  
 />


 <corners android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"

android:topLeftRadius="10dp" android:topRightRadius="10dp"/>
</shape>
4

1 回答 1

0

使用此代码

  <ImageView
                android:id="@+id/imageview1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:adjustViewBounds="true" />

然后按照以下几点:

  1. 将您的图像设置为 Imageview 作为“src”而不是“背景”。
  2. 裁剪与框架高度和宽度相关的图像宽度和高度。
于 2013-08-16T10:54:55.677 回答