playback video full screen

前端 未结 5 1902
无人及你
无人及你 2020-11-27 16:51

I am trying to play a video in my app. It has to be embedded.

I went through the \"Play Video Files in Android\" thread.

I am able to play my video using Vi

5条回答
  •  感情败类
    2020-11-27 17:26

    If you want to play video in full screen, then just add these line of code in your Androidmanifest.xml file, in the activity where this video is going to play. Just add these two lines in android manifest file.

     android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 
     android:configChanges="orientation|screenSize"
    

    Like in my androidmanifest.xml file i have added it

      
            
                
    
                
            
        
    

提交回复
热议问题