Open GuardYang opened 6 years ago
In MediaPlayerWrapper
change this:
private boolean inUiThread() {
return Thread.currentThread().getId() == 1;
}
with this:
private boolean inUiThread() {
return Thread.currentThread() == Looper.getMainLooper().getThread();
}
onVideoStoppedMainThread 机型 oppo R7c