What is the right way to play video which reside on Google Drive using VideoView control ?
Asked
Active
Viewed 1,014 times
1 Answers
0
Try using the url format of the video from Drive and display it in Android WebView
Uri uri = Uri.parse("https://drive.google.com/file/d/VIDEO_ID/view");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
You may also check this SO post for other workaround.

ReyAnthonyRenacia
- 17,219
- 5
- 37
- 56