android - 视频运行时检测屏幕上的触摸
我是初学者,有两个问题。
为什么附加代码中的视频没有运行(从模拟器获取消息,表明应用程序无法运行视频)。
任何人都可以帮助我了解如何实现 onTouchEvent 以便在视频运行时捕获屏幕上的触摸(不关心屏幕上的位置)。
提前致谢 阿米哈伊
公共类 VidShow 扩展了 Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.videoscrn);
/*run the video*/
VideoView video = (VideoView) findViewById(R.id.video);
// Load and start the movie
video.setVideoPath("raw/samplevideo.3gp" );
video.start();
}
}
I am a beginner and I have two question.
Why does the video in the attached code is not running (get a message from the emulator that the application cannot run the video).
Can anyone please help me to understand how should I implement the onTouchEvent in order to capture a touch on the screen (don't care where on the screen) while a video is running.
Thanks in advance
Amihay
public class VidShow extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.videoscrn);
/*run the video*/
VideoView video = (VideoView) findViewById(R.id.video);
// Load and start the movie
video.setVideoPath("raw/samplevideo.3gp" );
video.start();
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展 VideoView 并实现
VideoView。 onTouchEvent(..)
。Extend VideoView and implement
VideoView.onTouchEvent(..)
.