(SurfaceHolder holder, int format,
int width, int height)
| 141 | } |
| 142 | |
| 143 | @Override public void surfaceChanged(SurfaceHolder holder, int format, |
| 144 | int width, int height) { |
| 145 | if (thread == null || !thread.isAlive()) |
| 146 | start(); |
| 147 | else |
| 148 | resizedNative(width, height); |
| 149 | } |
| 150 | |
| 151 | @Override public void surfaceDestroyed(SurfaceHolder holder) { |
| 152 | } |
nothing calls this directly
no test coverage detected