OnDraw () does not start, nothing is drawn in surfaceView - Android

Hi! I have a surface view inside a horizontal scroll that I want to fill images with onDraw () call. However, nothing is being done. I have a class in which a drawing is executed from a CanvasThread thread.

public class PanelChart extends SurfaceView implements SurfaceHolder.Callback {
private CanvasThread canvasthread ;
public PanelChart(Context context, AttributeSet attrs) {
    super(context, attrs);
    // TODO Auto-generated constructor stub
getHolder().addCallback(this);
canvasthread = new CanvasThread(getHolder(), this);
setFocusable(true);

I tried to change

`synchronized (_surfaceHolder) {
                      _panel.postInvalidate();
                    }`

at synchronized (_surfaceHolder) { _panel.postInvalidate(); }

I also tried adding a call to setWillNotDraw (false) with no luck:

 @Override
public void surfaceCreated(SurfaceHolder holder) {
        // TODO Auto-generated method stub
    canvasthread.setRunning(true);
    canvasthread.start();
   setWillNotDraw(false);

This seems to be a common problem, but none of the solutions that I came across worked for me.

Thank!

+3
source share
1 answer

postInvalidate will not call onDraw with a surfaceView. You need to unlock the canvas, draw things, and then lock the canvas. Here is an example thread for a surfaceView:

    class CanvasThread extends Thread {
        private SurfaceHolder surfaceHolder;
        private PanelChart panel;
        private boolean run = false;

        public CanvasThread(SurfaceHolder surfaceHolder, PanelChart panel) {
            this.surfaceHolder = surfaceHolder;
            this.panel = panel;
        }

        public void setRunning(boolean run) {
            this.run = run;
        }

        public SurfaceHolder getSurfaceHolder() {
            return surfaceHolder;
        }

        @Override
        public void run() {
            Canvas c;
            while (run) {
                c = null;

                //limit the frame rate to maximum 60 frames per second (16 miliseconds)
                timeNow = System.currentTimeMillis();
                timeDelta = timeNow - timePrevFrame;
                if ( timeDelta < 16){
                    try{
                        Thread.sleep(16 - timeDelta);
                    }catch(InterruptedException e){

                    }
                }
                timePrevFrame = System.currentTimeMillis();

                try {
                    c = surfaceHolder.lockCanvas(null);
                    synchronized (surfaceHolder) {
                        panel.onDraw(c); //draw canvas 
                        computePhysics(); //calculate next frame
                    }
                } finally {
                    if (c != null) {
                        surfaceHolder.unlockCanvasAndPost(c);  //show canvas
                    }
                }//try finally
              } //while
        }//run
    }//thread
+3
source

All Articles