Actually I want to incooperate multiple videos in a single xml file .But while adding I am getting error. Actually I am confused why the error has occurred.So I have attached my java code below .The part which i wrote in bold Im getting error over there.I want to add mutiple videos in one page.So I was trying that.
public class bvideos extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.bvideos);
        VideoView videoView = findViewById(R.id.video_view1);
        String videoPath = "android.resource://" + getPackageName() + "/" + R.raw.bvideo1;
        VideoView **videoView** = findViewById(R.id.video_view1);
        String **videoPath** = "android.resource://" + getPackageName() + "/" + R.raw.bvideo1;
        Uri uri = Uri.parse(videoPath);
        videoView.setVideoURI(uri);
        MediaController mediaController = new MediaController(this);
        videoView.setMediaController(mediaController);
        mediaController.setAnchorView(videoView);
    }
}
 
     
    