Android实现无标题栏全屏的方法
android中实现全屏、无标题栏的两种办法,另附android系统自带样式的解释
实现全屏无标题栏:
1.在xml文件中进行配置
androidmanifest.xml中,找到需要全屏或设置成无标题栏的activity,在该activity进行如下配置即可。
实现全屏效果:
android:theme="@android:style/theme.notitlebar.fullscreen"
实现无标题栏(但有系统自带的任务栏):
android:theme="@android:style/theme.notitlebar"
2.编写代码设置
在程序中编写代码进行设置,只需在oncreate()方法中加入如下代码即可
coding: // full screen getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen); // no titlebar this.requestwindowfeature(window.feature_no_title);
附:android系统自带样式
android:theme="@android:style/theme.dialog" 将一个activity显示为对话框模式
android:theme="@android:style/theme.notitlebar" 不显示应用程序标题栏
android:theme="@android:style/theme.notitlebar.fullscreen" 不显示应用程序标题栏,并全屏
android:theme="theme.light" 背景为白色
android:theme="theme.light.notitlebar" 白色背景并无标题栏
android:theme="theme.light.notitlebar.fullscreen" 白色背景,无标题栏,全屏
android:theme="theme.black" 背景黑色
android:theme="theme.black.notitlebar" 黑色背景并无标题栏
android:theme="theme.black.notitlebar.fullscreen" 黑色背景,无标题栏,全屏
android:theme="theme.wallpaper" 用系统桌面为应用程序背景
android:theme="theme.wallpaper.notitlebar" 用系统桌面为应用程序背景,且无标题栏
android:theme="theme.wallpaper.notitlebar.fullscreen" 用系统桌面为应用程序背景,无标题栏,全屏
android:theme="translucent" 透明背景
android:theme="theme.translucent.notitlebar" 透明背景并无标题
android:theme="theme.translucent.notitlebar.fullscreen" 透明背景并无标题,全屏
android:theme="theme.panel" 面板风格显示
android:theme="theme.light.panel" 平板风格显示
下面再为大家分享了三种android实现无标题栏全屏的方法,供大家参考,具体内容如下
一、通过java代码
在setcontentview之前执行:
getwindow().setflags(windowmanager.layoutparams.flag_fullscreen,windowmanager.layoutparams.flag_fullscreen);//隐藏状态栏
二、调用android自带的theme
直接在androidmanifest.xml中需要全屏显示的activity属性中添加
android:theme="@android:style/theme.notitlebar.fullscreen" // 不显示应用程序标题栏,并全屏 android:theme="theme.light.notitlebar.fullscreen" // 白色背景,无标题栏,全屏 android:theme="theme.black.notitlebar.fullscreen" // 黑色背景,无标题栏,全屏
三、自己定义全屏theme
在style.xml文件中定义theme(如果没有style.xml,在res/values目录下创建)
<resources> <style name="theme.notitle_fullscreen"> <!--自定义主题名称--> <item name="android:windownotitle">true</item> <item name="android:windowfullscreen">true</item> </style> </resources>
直接在androidmanifest.xml中需要全屏显示的activity属性中添加android:theme="@style/theme.notitle_fullscree"
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。