【发布时间】:2011-03-29 19:51:29
【问题描述】:
...
mVideoView = (VideoView) findViewById(R.id.video); mVideoView.setKeepScreenOn(true); 最终意图意图 = getIntent(); mHeadline = intent.getStringExtra("headline"); 字符串 liveVideoUrl = intent.getStringExtra("live_video_url"); mVideoView.setVideoPath(liveVideoUrl); mMediaController = new MediaController(this); mVideoView.setMediaController(mMediaController); mVideoView.start();...
我需要捕捉用户按下暂停/播放按钮的时间。 VideoView 封装了媒体播放器,因此我如何捕获播放/暂停事件?谢谢。
【问题讨论】:
标签: android