Android设置全屏显示

主要有两种方式:

第一种办法: 代码中设置:

requestWindowFeature(Window.FEATURE_NO_TITLE);// 隐藏标题

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,

WindowManager.LayoutParams.FLAG_FULLSCREEN);// 设置全屏


setContentView(R.layout.activity_main);

注意: setContentView一定要写在设置全屏后边


第二种办法:AndroidManifest.xml文件中设置

  <application

        android:allowBackup="true"

        android:icon="@drawable/icon"

        android:label="@string/app_name"

        android:theme="@style/AppTheme"

        android:name="com.scwindow.utility.CrashApplication" >


在res文件下的values文件下styles.xml文件中,定义一下AppTheme

 

    <style name="AppTheme" parent="AppBaseTheme">

       

        

        <item name="android:windowNoTitle">trueitem>    

        <item name="android:windowFullscreen">trueitem>   

        <item name="android:windowIsTranslucent">trueitem>


    style>


你可能感兴趣的:(Android布局)