I'm having an issue playing an video in my app,The video is remote on the https server.I'm using the following as my string:
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse("https://server.com//attachments/getvideo/1083"), "video/*");
SectionContent.this.startActivity(intent);
the codes can not play the video,I am very confused.please help me,thanks.

