我用此代码将背景图像设置在表面Created () 中 :
Bitmap background = BitmapFactory.decodeResource(getResources(), R.drawable.untitled);
float heightScale = ((float)background.getHeight())/(float)this.getHeight();
float widthScale = (float)background.getWidth()/(float)this.getWidth();
float scale = heightScale > widthScale ? widthScale : heightScale;
int newWidth = Math.round((float)background.getWidth()/scale);
int newHeight = Math.round((float)background.getHeight()/scale);
scaled = Bitmap.createScaledBitmap(background, newWidth, newHeight, true);
缩放为受保护的位图。 在 onDraw () 函数中, 我有一个 :
canvas.drawBitmap(scaled, 0, 0, null); // draw the background
这使我的画速减慢了20-30毫秒,
canvas.drawColor(Color.Black);
有其它方法吗? 正在加速 Draw 背景 函数? 我注意到如果我不设置背景, 应用程序将无法清除我画的图示 。