我有一个扩展名为.swf的视频我不确切知道如何在我的应用程序的开头加载它我有一个启动视频的示例代码但我不知道如何使用它我不喜欢知道它是否有效.SWF我能得到你的帮助
MediaController mc = new MediaController(this);
getWindow().setFormat(PixelFormat.TRANSLUCENT);
video.setMediaController(mc);
video.setVideoURI(uri);
video.setOnCompletionListener(this);
video.setOnTouchListener(new OnTouchListener() {
public boolean onTouch(View arg0, MotionEvent arg1) {
Toast.makeText(getApplicationContext(), "ontouch",Toast.LENGTH_LONG).show();
return true;
}
}) ;