English 中文(简体)
地表观察背景在拖放 20 - 30 毫秒上减慢
原标题:SurfaceView background slows down onDraw 20-30 ms

我用此代码将背景图像设置在表面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 背景 函数? 我注意到如果我不设置背景, 应用程序将无法清除我画的图示 。

问题回答

好吧,这样吧:

您创建一个布局, 并将布局设置为内容视图 。 然后将表面视图添加到布局中, 然后将表面视图像素格式设置为透明化 :

    panel = new Panel(this, getNewHandler());   
    ((LinearLayout)findViewById(R.id.panellinear)).addView(panel);
    SurfaceHolder p;
    panel.setZOrderOnTop(true);    // necessary
    p = panel.getHolder();
    p.setFormat(PixelFormat.TRANSPARENT)

(为我的小组是 延伸地表观察的东西)





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签