android 全屏

一、通过代码

在setContentView之前执行:

requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题栏
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);//隐藏状态栏

二、调用Android自带的Theme

直接在AndroidManifest.xml中需要全屏显示的Activity属性中添加
android:theme=“@android :style/Theme.NoTitleBar.Fullscreen”

三、自己定义全屏Theme

在style.xml文件中定义theme(如果没有style.xml,在res/values目录下创建)

<style name="Theme.NoTitle_FullScreen"> 
    <item name="android:windowNoTitle">true</item>    
    <item name="android:windowFullscreen">true</item>      
</style> 


直接在AndroidManifest.xml中需要全屏显示的Activity属性中添加
android:theme=“@style/Theme.NoTitle_FullScree”

你可能感兴趣的:(android 全屏)