Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @Override
  2. public void onCreate(Bundle savedInstanceState) {
  3. super.onCreate(savedInstanceState);
  4. setContentView(R.layout.activity_main);
  5. showVideo();
  6. }
  7. private void showVideo()
  8. {
  9. VideoView vd = (VideoView)findViewById(R.id.videoview);
  10. Uri uri = Uri.parse("android.resource://package/"+R.raw.movie);
  11. MediaController mc = new MediaController(this);
  12. vd.setMediaController(mc);
  13. vd.setVideoURI(uri);
  14. vd.start();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement