问题
I have an Android Application, where I have an ImageView, I need to keep the size constant, there can be various images that I need to put into this ImageView, of different sizes.
I just need to ensure that all the Images must fit into the ImageView,
the Image should increase in size if it is smaller and should decrease, in case it is bigger.
Thanks a lot for your time.
回答1:
Fix ImageView's size with dp or fill_parent and set android:scaleType to fitXY.
回答2:
In your case you need to
- Fix the ImageView's size. You need to use dp unit so that it will look the same in all devices.
- Set
android:scaleTypetofitXY
Below is an example:
<ImageView
android:id="@+id/photo"
android:layout_width="200dp"
android:layout_height="100dp"
android:src="@drawable/iclauncher"
android:scaleType="fitXY"/>
For more information regarding ImageView scaleType please refer to the developer website.
回答3:
Try this
ImageView img
Bitmap bmp;
int width=100;
int height=100;
img=(ImageView)findViewById(R.id.imgView);
bmp=BitmapFactory.decodeResource(getResources(),R.drawable.image);//image is your image
bmp=Bitmap.createScaledBitmap(bmp, width,height, true);
img.setImageBitmap(bmp);
Or If you want to load complete image size in memory then you can use
<ImageView
android:id="@+id/img"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/image"
android:scaleType="fitXY"/>
回答4:
You can also try this, suppose if you want to make a back image button and you have "500x500 png" and want it to fit in small button size.
Use dp to fix ImageView's size.
add this line of code to your Imageview.
android:scaleType="fitXY"
EXAMPLE:
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/imageView2"
android:src="@drawable/Backicon"
android:scaleType="fitXY"
/>
回答5:
Along with @Youngsik Oh indicated answer, below link is useful for what you want to achieve.
Large images some times cause OutOfMemory error. In provided link, its taking images from Asset folder. You can modify it according to your need. Hope it helps.
Android:Issue Image resolution
来源:https://stackoverflow.com/questions/12049626/android-imageview-fixing-image-size