Guest User

Untitled

a guest
Jul 16th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. public void onCreate(Bundle icicle) {
  2. super.onCreate(icicle);
  3. getWindow().setFormat(PixelFormat.TRANSLUCENT);
  4. setContentView(R.layout.videoview);
  5.  
  6.  
  7. File musicFile = new File( Environment.getExternalStorageDirectory(),
  8. "documentariesandyou.mp4");
  9. String path = musicFile.getAbsolutePath();
  10.  
  11. mVideoView = (VideoView) findViewById(R.id.surface_view);
  12. mVideoView.setVideoPath(path);
  13. mVideoView.setMediaController(new MediaController(this));
  14. mVideoView.requestFocus();
  15. }
  16.  
  17. 05-25 01:42:28.622: WARN/MediaPlayer(11807): info/warning (1, 26)
  18. 05-25 01:42:28.622: ERROR/PlayerDriver(95): HandleErrorEvent: PVMFErrProcessing
  19. 05-25 01:42:28.632: ERROR/MediaPlayer(11807): error (1, -18)
  20. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): FATAL EXCEPTION: main
  21. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): java.lang.NullPointerException
  22. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at android.widget.VideoView$2.onPrepared(VideoView.java:389)
  23. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at android.media.MediaPlayer$EventHandler.handleMessage(MediaPlayer.java:1364)
  24. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at android.os.Handler.dispatchMessage(Handler.java:99)
  25. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at android.os.Looper.loop(Looper.java:123)
  26. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at android.app.ActivityThread.main(ActivityThread.java:4633)
  27. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at java.lang.reflect.Method.invokeNative(Native Method)
  28. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at java.lang.reflect.Method.invoke(Method.java:521)
  29. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
  30. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
  31. 05-25 01:42:28.632: ERROR/AndroidRuntime(11807): at dalvik.system.NativeStart.main(Native Method)
Add Comment
Please, Sign In to add comment