Android TV Live Streaming

Hi, I am a new Android developer. And I donโ€™t know about live streaming channels in Hindi. I am online but not getting the perfect idea.

Can someone give me an idea of โ€‹โ€‹how android works with direct streaming channels.

A bit in advance. Hollow

+4
source share
1 answer

You can use VideoView for this. Try the following:

String LINK = "type_here_the_link"; setContentView(R.layout.mediaplayer); VideoView videoView = (VideoView) findViewById(R.id.video); MediaController mc = new MediaController(this); mc.setAnchorView(videoView); mc.setMediaPlayer(videoView); Uri video = Uri.parse(LINK); videoView.setMediaController(mc); videoView.setVideoURI(video); videoView.start(); 

For more information, see this: how to play video from a URL

+1
source

Source: https://habr.com/ru/post/1437166/


All Articles