I am trying to play a video from url using the following code:
Intent intent= new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(intent);
When I intended to run, does it show that the video player in landscape mode allows you to set it to portrait mode?
source
share