How to set XML fullscreen in Android

后端 未结 2 1842
心在旅途
心在旅途 2021-01-01 16:54

How do I create a full screen mode in XML irregardless of how small what contents are in it?

Here\'s my \"show.xml\" code:



        
2条回答
  •  孤独总比滥情好
    2021-01-01 17:32

    Afaik you can't do fullscreen in xml. You have two choices:

    1. AndroidManifest.xml in activity's section
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 
    
    1. in onCreate() before calling setContentView
    requestWindowFeature( Window.FEATURE_NO_TITLE );
    
    getWindow().setFlags( WindowManager.LayoutParams.FLAG_FULLSCREEN,
                          WindowManager.LayoutParams.FLAG_FULLSCREEN );
    

提交回复
热议问题