I am trying to play video from url using the following code:
Intent intent= new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(intent);
When I intent started it show the video player in landscape mode is it possible to set it to portrait mode?