每次我调用这些方法时,都需要14到20 to才能完成。
Canvas canvas = holder.lockCanvas();
holder.unlockCanvasAndPost(canvas);这是正常行为吗?我该换个办法吗?
这是整个代码
public class Render extends SurfaceView {
Context c = null;
SurfaceHolder holder;
volatile boolean running = true;
public Render(Context c) {
super(c);
this.c = c;
this.holder = getHolder();
}
public void run() {
if(running) {
if(!holder.getSurface().isValid()){
System.out.println("not valid");
return;
}
Canvas canvas = holder.lockCanvas();
holder.unlockCanvasAndPost(canvas);
}
}
}追踪:
01-05 15:49:20.322: I/System.out(4892):帧时:0 ms frame291
01-05 15:49:20.322: I/System.out(4892):无效
01-05 15:49:20.322: I/System.out(4892):帧时:0 ms frame292
01-05 15:49:20.332: I/System.out(4892):帧时:2 ms frame293
01-05 15:49:20.357: I/System.out(4892):帧时: 22 ms frame294
01-05 15:49:20.357: I/System.out(4892):帧时:1 ms frame295
01-05 15:49:20.362: I/System.out(4892):帧时:1 ms frame296
01-05 15:49:20.367: d/剪贴板(4892):在开始输入时隐藏剪贴板对话框:由别人完成.好了!
01-05 15:49:20.367: I/System.out(4892):帧时:8 ms frame297
01-05 15:49:20.377: I/System.out(4892):帧时: 10 ms frame298
01-05 15:49:20.397: I/System.out(4892):帧时: 16 ms frame299
01-05 15:49:20.412: I/System.out(4892):帧时: 16 ms frame300
01-05 15:49:20.427: I/System.out(4892):帧时: 16 ms frame301
更新
当我使用OpenGL时,同样的事情也发生了
package android.apps.td;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
import android.content.Context;
import android.opengl.GLSurfaceView;
import android.opengl.GLSurfaceView.Renderer;
public class Render extends GLSurfaceView implements Renderer {
private final int MILLION = 1000000;
private long frame;
public Render(Context context) {
super(context);
setRenderer(this);
// TODO Auto-generated constructor stub
}
public void onDrawFrame(GL10 arg0) {
System.out.println("Frame "+(System.nanoTime()-frame)/MILLION+" ms");
frame = System.nanoTime();
}
public void onSurfaceChanged(GL10 gl, int width, int height) {
System.out.println("Surface changed w:"+width+" h:"+height);
}
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
System.out.println("Surface created");
}
}发布于 2012-01-06 23:26:04
我发现了这篇文章:http://replicaisland.blogspot.com/2009/10/rendering-with-two-threads.html
eglSwapBuffers()可能在onDrawFrame之后调用并阻塞,直到硬件完成绘图和交换缓冲区,这需要最小的延迟16.67ms。
发布于 2012-04-27 20:25:32
我一直在调查这个问题。我在Galaxy Tab GT-p 7500上发现的是
https://stackoverflow.com/questions/8736194
复制相似问题