Android ImageView setting Bitmap FitXY doesn't work
android, android-imageview, image, imageview, scale
Solution
Using `scaleType` will not change the size of your ImageView, as you seem to think it should. All it does is scale the bitmap up to the size of the ImageView(which it is doing quite well, judging by your screenshot).
If you want to make square ImageViews, you should try looking at this question.
Also, I'm not sure I understand why you're using the TwoWayGridView library. It's specifically designed to allow you to state the number of rows/columns, and it will stretch the items to fit. This seems to be the exact opposite of what you want, since you want to make them square. A normal GridView will work, provided you override the `onMeasure()` of each item like it shows in the linked quesion/answer.
Problem
I've been trying for a really long time to set the bitmap so it will fit the `ImageView` bounds. It just doesn't work via `scaleType: fitXY`. My bitmap images size are lower than the `ImageView`'s (Saved on 100X100 pixels), I want my bitmap images to fit and stretch into the `ImageView`. Here's some code: ``` <ImageView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/imageView" android:layout_height="match_parent" android:layout_width="match_parent" android:src="@drawable/locked_image" android:scaleType="fitXY" /> ``` Here's the code of setting the `ImageView` (I'm setting the `scaleType` in different places for testing): ``` @Override public View getView(int position, View convertView, ViewGroup parent) { final ImageView imageView; if (convertView == null) { imageView = (ImageView) getLayoutInflater().inflate(R.layout.item_grid_image, parent, false); imageView.setScaleType(ScaleType.FIT_XY); } else { imageView = (ImageView) convertView; imageView.setScaleType(ScaleType.FIT_XY); } imageLoader.displayImage(imagesIds[position], imageView, options); imageView.setScaleType(ScaleType.FIT_XY); return imageView; } ``` Here's how it looks: As you can see, the Height of the `ImageView` is fine, but I want the Width of it to be the same. I do not have access to my bitmap image via my activity, so please don't ask me to resize my bitmap. I really don't understand why it just doesn't work as it should. EDIT: Just to make the problem more understandable. The `ImageView` height is calculated for each device. It is different for each device. I want the width of my `ImageView` to be the same as the height as it is. I am using the `Two-WayGridView` library to show the images if it makes any difference.