danylovolokh/VideoPlayerManager

onVideoStoppedMainThread

GuardYang opened this issue · 1 comments

onVideoStoppedMainThread 机型 oppo R7c

In MediaPlayerWrapper change this:

  private boolean inUiThread() {
        return Thread.currentThread().getId() == 1;
    }

with this:

private boolean inUiThread() {
   return Thread.currentThread() == Looper.getMainLooper().getThread();
}