主要有两种方式:

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

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

 <!-- Application theme. -->

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

        <!-- All customizations that are NOT specific to a particular API-level can go here. -->

        

        <item name="android:windowNoTitle">true</item>    

        <item name="android:windowFullscreen">true</item>   

        <item name="android:windowIsTranslucent">true</item>

    </style>

自己做了一款幼儿学习笔画生字古诗的APP,请大家支持一下,谢谢


​​​​​​​

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐