Android-Video View in Fullscreen

前端 未结 6 605
遇见更好的自我
遇见更好的自我 2020-12-01 07:45

I am trying to make this VideoView to appear in full screen mode :

public class ViewVideo extends Activity {
  private String filename;
  private static fina         


        
6条回答
  •  借酒劲吻你
    2020-12-01 08:29

    Perhaps it's because you have to add following code:

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(
        WindowManager.LayoutParams.FLAG_FULLSCREEN,  
         WindowManager.LayoutParams.FLAG_FULLSCREEN);
    

    before setContentView(your_content_view) to get rid of app title bar. I know its a very late reply but somebody might find it useful.

提交回复
热议问题