您的位置:首页 > 移动开发 > Android开发

Android中实现全屏、无标题栏,中途去掉标题

2016-06-15 09:20 369 查看
实现Android全屏、无标题栏主要有两种方法(Java代码中、xml中)

一:xml中在中可以直接更换主题Theme,或者修改Theme的Style

无标题和全屏(直接修改theme)

<span style="font-size:18px;"><application
android:name="com.juli.demp.util.ContextUtil"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" ></span>
<span style="font-size:18px;"></span><pre name="code" class="html"><span style="font-size:18px;"><application
android:name="com.juli.demp.util.ContextUtil"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" ></span>


直接修改  Style

很多时候我们是在中途将主题修改成无标题栏的,因为系统自带的AppTheme和Theme.NoTitleBar除了有无标题栏外,还有许多其他区别。

为了不改变其他样式,我们可以直接修改  Style

Style中的AppTheme如:

<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

theme中的Theme.NoTitleBar如:
<style name="Theme.NoTitleBar">
       <item name="android:windowNoTitle">true</item></span>
    </style>
<span style="font-size:18px;">我们可以依然使用AppTheme,将其改为</span>
<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>
    </style>


二:java代码中

// Full Screen
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

// No Titlebar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);</span>


以下是系统自带的一些主题样式,我们也可以对其进行部分修改
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 Theme