I get the following runtime error.
ERROR: thread attach failed
My project contains two classes in src as a parry:
- Action class
- class video_thread
I created an object for this video_thread class in the Activity class, made it Daemon, and started it like this:
video_thread v=new video_thread(); video_thraed.setDaemon(true); video_thread.start();
At runtime, I find this error in logcat.
source share