我从字节数组创建一个位图图像并在ImageView中显示它。 ImageView的android:layout_width
和android:layout_height
设置为wrap_content,android:scaleType
设置为居中。但图像仍然缩放到屏幕尺寸。
有没有办法以原始大小显示图像(就像直接使用android:src属性一样)?
CODE:
从字节数组创建位图:
private Bitmap decodeBitmap(byte[] data) {
return BitmapFactory.decodeByteArray(data, 0, data.length);
}
和ImageView的布局:
<ImageView
android:id="@+id/logo"
android:scaleType="centerInside"
android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
将图像设置为ImageView:
mView.setImageBitmap(mBitmap);
答案 0 :(得分:1)
请使用此代码 如果流来自资源
InputStream is = this.getResources().openRawResource(imageId1);
Bitmap originalBitmap = BitmapFactory.decodeStream(is);
ImageView myimage.setImageBitmap(originalBitmap);
myimage.setScaleType(ScaleType.MATRIX);