我见过几次人们在使用以下模式时使用的模式SurfaceView
:
while(true) {
try {
renderThread.join();
break;
} catch (InterruptedException e) {
// retry
}
}
我见过几次人们在使用以下模式时使用的模式SurfaceView
:
while(true) {
try {
renderThread.join();
break;
} catch (InterruptedException e) {
// retry
}
}