This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I have a SurfaceView. I just draw on it manually from an other Thread. It runs nicely. But after 10-20 minutes of running in average I get this exception: 01-14 08:51:25.000 3740-3740/com.myPackage E/AndroidRuntime﹕ FATAL EXCEPTION: main java.lang.IllegalStateException: onMeasure() did not set the measured dimension by calling setMeasuredDimension() at android.view.View.measure(View.java:15200) at [...] read more
Main Thread: ("main" prio=5 tid=1) Makes an ArrayList in onCreate() Makes an object for locking. (lock) Starts a Thread: ("Thread-6024" prio=5 tid=29) myThread= new MyThread(); myThread.start(); MyThread: public class PainterThread extends Thread{ @Override public void run() { while(true) { synchronized(lock){doMyStuff()} Thread.yield(); } } Also start an other thread with Timer [...] read more