Answers for "how to add video in videoview android"

1

android videoview setup

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.your layout xml file);
        VideoView videoView = findViewById(R.id.your videoview id);
        String videoPath = "android.resource://" + getPackageName() + "/" + R.raw.your video's name;
        Uri uri = Uri.parse(videoPath);
        videoView.setVideoURI(uri);
        videoView.start();
Posted by: Guest on June-07-2021

Code answers related to "how to add video in videoview android"

Browse Popular Code Answers by Language