我有一个ImageView,我希望自动调整大小。我的意思是,无论图像的大小如何,这个myst都以相同的大小显示,但是这也必须适用于不同的屏幕尺寸,因此我无法分配特定的值。这是xml:
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="30"
android:layout_gravity="center"
/>
这个代码
imageFoto=(ImageView)v.findViewById(R.id.image);
url = new URL("http://54.76.186.59/Foto/Foto.jpg");
bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
imageFoto.setImageBitmap(bmp);
imageFoto.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
imageFoto.setAdjustViewBounds(true);