mediaPlayer error -38,0

后端 未结 5 1824
梦如初夏
梦如初夏 2020-12-01 07:18

I try to do simple online radio player. Here is adress of stream http://radio-electron.ru:8000/96 Here is my code.

MyActivity.java

package com.exampl         


        
5条回答
  •  南方客
    南方客 (楼主)
    2020-12-01 07:45

    The error code -38 ought to correspond to INVALID_OPERATION.

    A likely cause of this is that you don't wait for prepareAsync to finish before you call start. You should set an onPreparedListener and start the MediaPlayer only when onPrepared has been called.

提交回复
热议问题