Play Youtube videos in Video View in android

前端 未结 3 807
轮回少年
轮回少年 2021-01-12 10:22

I am developing a youtube player in android. I am getting the rtsp video correct url. But still the video is not playing. Please help to me to find a solution.

Thank

3条回答
  •  误落风尘
    2021-01-12 10:52

    There might be many reasons to not play the video,You can test it on other devices also set android:hardwareAccelerated="true" in manifest

    try following listeners to get correct issue

    playerview.setOnPreparedListener(preparelistener);
            playerview.setOnErrorListener(errorlistenr);
            playerview.setOnCompletionListener(completelistener); 
    

提交回复
热议问题