How to change my code so that the orientation is always Portrait in the activity being started...Now it is landscape. (Ps:I searched in the net..no much use.)
final MediaPlayer mediaPlayer = new MediaPlayer();
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
Intent viewMediaIntent = new Intent();
viewMediaIntent.setAction(android.content.Intent.ACTION_VIEW);
viewMediaIntent.setDataAndType(Uri.parse(schedule.getRecordPath()), "audio/*");
viewMediaIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
v.getContext().startActivity(viewMediaIntent);