实施9个旧机器人薄片的问题

时间:2012-10-31 22:11:28

标签: android image bitmap illegalargumentexception

我是Android的菜鸟,我正在尝试将9 Old Androids flakes演示应用到我的应用程序中。但是,当我将图像资源从演示使用的图像更改为我选择的应用程序崩溃时,并说IllegalArgumentException:宽度和高度必须是> 0.我的logcat说我在createcaledbitmap和createFlake的行引起了这个问题。我迷失了为什么会发生这种情况,演示图像的宽度为75px x 90px,而我的图像宽度为166px x 72px。非常感谢任何帮助。

FLAKE VIEW CLASS(我在哪里创建Flake)

void addFlakes(int quantity) {
    for (int i = 0; i < quantity; ++i) {
        flakes.add(Flake.createFlake(getWidth(), droid)); //This line causes exception
    }
    setNumFlakes(numFlakes + quantity);
}

/**
 * Subtract the specified number of droidflakes. We just take them off the end of the
 * list, leaving the others unchanged.
 */
void subtractFlakes(int quantity) {
    for (int i = 0; i < quantity; ++i) {
        int index = numFlakes - i - 1;
        flakes.remove(index);
    }
    setNumFlakes(numFlakes - quantity);
}

@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged(w, h, oldw, oldh);
    // Reset list of droidflakes, then restart it with 8 flakes
    flakes.clear();
    numFlakes = 0;
    addFlakes(8); //This line causes exception
    // Cancel animator in case it was already running
    animator.cancel();
    // Set up fps tracking and start the animation
    startTime = System.currentTimeMillis();
    prevTime = startTime;
    frames = 0;
    animator.start();
}

FLAKE CLASS(我创建缩放位图的地方)

static Flake createFlake(float xRange, Bitmap originalBitmap) {
    Flake flake = new Flake();
    // Size each flake with a width between 5 and 55 and a proportional height
    flake.width = (int)(5 + (float)Math.random() * 50);
    float hwRatio = originalBitmap.getHeight() / originalBitmap.getWidth();
    flake.height = (int)(flake.width * hwRatio);

    // Position the flake horizontally between the left and right of the range
    flake.x = (float)Math.random() * (xRange - flake.width);
    // Position the flake vertically slightly off the top of the display
    flake.y = 0 - (flake.height + (float)Math.random() * flake.height);

    // Each flake travels at 50-200 pixels per second
    flake.speed = 50 + (float) Math.random() * 150;

    // Flakes start at -90 to 90 degrees rotation, and rotate between -45 and 45
    // degrees per second
    flake.rotation = (float) Math.random() * 180 - 90;
    flake.rotationSpeed = (float) Math.random() * 90 - 45;

    // Get the cached bitmap for this size if it exists, otherwise create and cache one
    flake.bitmap = bitmapMap.get(flake.width);
    if (flake.bitmap == null) {
        flake.bitmap = Bitmap.createScaledBitmap(originalBitmap, //This line causes exception
                (int)flake.width, (int)flake.height, true);
        bitmapMap.put(flake.width, flake.bitmap);
    }
    return flake;
}

1 个答案:

答案 0 :(得分:1)

由于图像的宽度大于您需要基本反转这三行代码所需的高度。

flake.width = (int)(5 + (float)Math.random() * 50);
float hwRatio = originalBitmap.getHeight() / originalBitmap.getWidth();
flake.height = (int)(flake.width * hwRatio);

到这个

flake.height = (int)(5 + (float)Math.random() * 50);
float hwRatio = originalBitmap.getWidth() / originalBitmap.getheight();
flake.width = (int)(flake.height * hwRatio);