What does MediaPlayer info/warning (973, 0) mean?

前端 未结 2 801
被撕碎了的回忆
被撕碎了的回忆 2021-01-11 10:09

I\'m using MediaPlayer to play a lot of short music in my app, but I got this warning in my logcat:

MediaPlayer info/warning (973, 0).

2条回答
  •  执念已碎
    2021-01-11 10:36

    973, 0 means

    int what, int extra
    

    what - the type of info or warning.

    extra - an extra code, specific to the info. Typically implementation dependent.

    For more details, please refer here.

提交回复
热议问题