pedroSG94 / vlc-example-streamplayer

Example code how to play a stream with VLC
GNU General Public License v3.0
229 stars 93 forks source link

With Intent not fill the SurfaceView #54

Open be6ana opened 2 years ago

be6ana commented 2 years ago

Hi, i'm using your example, but if i implement intent from another activity, the video view is too small size.

in onCreate --->

mVideoUrl = getIntent().getStringExtra("url"); vlcVideoLibrary.play(mVideoUrl);

Why if i clicking on the example button "Start" the video is full size, but if i call vlcVideoLibrary.play(mVideoUrl); directly from onCreate the video has too small size ?

Please anyone can help me ?