3

我正在关注有关有效显示位图的 android 开发人员教程,并且我正在尝试读取位图的尺寸和类型。

这是我用于读取位图的代码:

BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    image = BitmapFactory.decodeResource(context.getResources(), R.id.myimage, options);
    imageHeight = options.outHeight;
    imageWidth = options.outWidth;
    imageType = options.outMimeType;

我的 imageHeight 和 imageWidth 结果似乎都为 0,并且 imageType 为空。

图像是位图格式。

我的 onCreate 方法是

ImageView imgView = (ImageView) findViewById(R.id.myimage);
    Drawable draw = getResources().getDrawable(R.drawable.bmp_login_screen);
    imgView.setImageDrawable(draw);



    TextView textView = (TextView) findViewById(R.id.text_view);

    ReadBitmapDimen dimensions = new ReadBitmapDimen(getApplicationContext());
    textView.setText(" Dimensions for userlogin image: outHeight = " + String.valueOf(dimensions.imageHeight));

谢谢!

4

2 回答 2

2

改变这一行 -image = BitmapFactory.decodeResource(context.getResources(), R.id.myimage, options);

image = BitmapFactory.decodeResource(context.getResources(), R.drawable.bmp_login_screen, options);
于 2013-09-10T10:50:24.967 回答
1

R.id.myimage不是有效的可绘制资源。应该是R.drawable.something

于 2013-09-10T10:32:46.860 回答