Unable to pause/forward/backward video using mediacontroller in android

无人久伴 提交于 2019-12-11 12:19:34

问题


Iam unable to pause / forward / backward the video using MediaController and it is happening only in the LG devices. Below is the code which am using and it is working in the rest of all the devices :

    VideoView video=(VideoView)findViewById(R.id.video);
    MediaController mediaController = new MediaController(this);
    mediaController.setAnchorView(video);
    video.setMediaController(mediaController);
    video.setVideoURI(uri);
    video.start();

Please help me on this.


回答1:


Finally I found a solution...

In some LG devices, by defaultly controls are disabled in VideoView.

So we have to explicitly enable them by Overriding the below functions in VideoView:

@Override
public boolean canSeekForward() {
    return true;
}

@Override
public boolean canSeekBackward() {
    return true;
}

@Override
public boolean canPause() {
    return true;
}


来源:https://stackoverflow.com/questions/18294725/unable-to-pause-forward-backward-video-using-mediacontroller-in-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!