2

一个简单的文字游戏应用程序中,我使用以下代码从PNG 图像条纹加载 26 个字母平铺图像:

图像条纹

private static final CharacterIterator ABC = 
    new StringCharacterIterator("ABCDEFGHIJKLMNOPQRSTUVWXYZ");

private static HashMap<Character, Bitmap> sImages =
    new HashMap<Character, Bitmap>();

BitmapRegionDecoder decoder = null; 

InputStream is = sContext.getResources()
    .openRawResource(R.drawable.big_english);

try {   
        decoder = BitmapRegionDecoder.newInstance(is, false); 
} catch (IOException ex) {
}       

int h = decoder.getHeight();
Rect r = new Rect(0, 0, h, h);

for (char c = ABC.first(); 
        c != CharacterIterator.DONE; 
        c = ABC.next(), r.offset(h, 0)) {

           Bitmap bmp = decoder.decodeRegion(r, null);
           sImages.put(c, bmp);
}       

这在 Android 模拟器中运行良好:

模拟器

但是在真正的 Moto G 设备上,字母太大(可能是 1.5 倍?当我打印时sContext.getResources().getDisplayMetrics().density,出于某种原因得到 2.0):

Moto G 设备

同时,黄色方形瓷砖背景正确显示。

所有(big_tile.pngbig_english.pnggame_board.png)都是 PNG 图像 - 那么为什么有区别呢?

为什么会发生这种情况以及如何解决这个问题?

我应该使用inDensity或任何其他BitmapFactory.Options吗?

或者是因为我的getResources().openRawResource()电话 - 但改用什么?

4

2 回答 2

2

我对图像也有同样的问题,安卓设备有很多屏幕分辨率。您需要将大量图像放入可绘制文件夹中,或者为每个屏幕分辨率提供一组图像宽度和高度规则

for example:
if screen_resolution = 4 inch
int img_height = 200
int img_width = 200
else if screen_resolution = 5 inch
int img_height = 300
int img_width = 300

. . 等等希望这可以帮助你一些如何。

这是我的一些代码(对不起,我使用的是图像视图而不是位图):

整数宽度,高度;

   //calculate device screen
    DisplayMetrics metrics=new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(metrics);
    float height=metrics.heightPixels/metrics.xdpi;
    float width=metrics.widthPixels/metrics.ydpi;
    float inchscreen = FloatMath.sqrt(height*height+width*width);


if (inchscreen > 4.1000)
    {
        //set image height for device above 4.1 inch screen
        height = 400;
        width = 400     
    }
else {
        //set image height for device below 4.1 inch screen
        height = 280;
        width = 280
    }

if (imgfile != null) {
                    int imageResource = getResources().getIdentifier(uri, null,
                            getPackageName());
                    Drawable image = getResources().getDrawable(imageResource);
                    imageview.setImageDrawable(image);
                    imageview.getLayoutParams().height = h_display;
                    imageview.getLayoutParams().width = h_display;
                    }
于 2014-11-20T05:47:40.853 回答
0

我将在这里分享我自己的解决方案。

问题是,我的字母图块的黄色背景是 a Drawable,前景是 a (在 PNG 条纹Bitmap的帮助下读取)。BitmapRegionDecoder

由于一些奇怪的原因,我仍然不明白 - 它们的尺寸在某些 Android 设备上有所不同。

(1)所以我最简单的解决方法是在每次绘制字母图块时将Bitmap(带字母的前景)缩放到(黄色方形背景)的范围内:Drawable

private Paint mPaint = new Paint(Paint.FILTER_BITMAP_FLAG);

public void draw(Canvas canvas) {
    canvas.save();
    canvas.translate(left, top);
    mImage.draw(canvas);
    Bitmap bmp = getImages().get(mLetter);
    canvas.drawBitmap(bmp, null, mImage.getBounds(), mPaint);
    canvas.restore();
}

(2)更多涉及的解决方法是仅缩放Bitmap一次 - 在我阅读它BitmapRegionDecoder之后并将它存储在 HashMap 之前:

private static final CharacterIterator ABC = 
    new StringCharacterIterator("ABCDEFGHIJKLMNOPQRSTUVWXYZ");

private static HashMap<Character, Bitmap> sBitmaps = 
    new HashMap<Character, Bitmap>();

try {
        InputStream is = context.getResources().openRawResource(EN);
        BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is, false);
        int h = decoder.getHeight();
        Rect r = new Rect(0, 0, h, h);
        for (char c = ABC.first();
             c != CharacterIterator.DONE;
             c = ABC.next(), r.offset(h, 0)) {
                Bitmap unscaled = decoder.decodeRegion(r, null);
                Bitmap scaled = Bitmap.createScaledBitmap(unscaled, (int) (SCALE * width), (int) (SCALE * height), true);
                sBitmaps.put(c, scaled);
        }
} catch (IOException ex) {
}

(3)两种方法都有效,但在较旧的 Google Nexus One 设备上,由于某种原因我看不到前景。在这一点上,我已经失去了勇气,停止使用BitmapRegionDecoder,只是用 ImageMagick 分割 PNG 条纹(命令是convert square.png -crop 40x40 square_%d.png)。现在我的应用程序同时Drawable用于字母图块的前景和背景,并且适用于从 SDK 级别 8 开始的所有设备:

private static final String SQUARE = "square_";

private static final char[] LETTERS = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};

private static HashMap<Character, Drawable> sLetters = 
    new HashMap<Character, Drawable>();

for (int i = 0; i < LETTERS.length; i++) {
    char c = LETTERS[i];
    int id = context.getResources().getIdentifier(PREFIX + i, "drawable", context.getPackageName());
    Drawable d = context.getResources().getDrawable(id);
    d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
    sLetters.put(c, d);
} 

模拟器

于 2014-11-20T12:44:33.687 回答