图像矩形和屏幕尺寸

时间:2013-09-08 01:26:44

标签: android image canvas

我遇到画布,矩形和屏幕尺寸问题:

the issue

我不知道什么是错的,因为我在两个模拟器中都使用完全相同的代码,这里是代码:

云是一个普通的对象,包含图像和一些移动它们的方法,这就是我创建云的方式:

云都在一个文件中,坐标是单个云的矩形。

for (byte i = 0; i < 4; i++) {

        Cloud c;
        if (i == 1) c = new Cloud(5, 5, 245, 145);
        else if (i == 2) c = new Cloud(340, 30, 480, 130);
        else if (i == 3) c = new Cloud(565, 30, 725, 130);
        else c = new Cloud(830, 20, 980, 130);

        c.SetX(0);c.SetY(i * 150);


        //c.ReubicarNube();
        Clouds.Add(c);
    }

Cloud类的构造函数调用它来处理图像(Plain是云的超类):

public Plain(int ResourceImg, int left, int top, int right, int bottom){


    this.img = BitmapFactory.decodeResource(Init.GetContext().getResources(), ResourceImg);
    this.Width = right - left;
    this.Height = bottom - top;
    this.frameImg = new Rect(left, top, right, bottom);
    this.rect = new Rect(0, 0, this.Width, this.Height);

    Log.v("Plains", this.frameImg.toString() + " " + this.rect.toString());
}

这就是我画的方式:

public void draw(Canvas canvas) {     
    canvas.drawBitmap(img, frameImg, rect, Init.PaintFilter);
    //canvas.drawbi
}

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

我做到了!,

我将图像放在drawable-hdpi文件夹中!这就是为什么我没有工作!!

谢谢!