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

来源:互联网 发布:sql server身份验证sa 编辑:程序博客网 时间:2024/05/25 23:58

实现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 ScreengetWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,     WindowManager.LayoutParams.FLAG_FULLSCREEN);// No Titlebarthis.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" 平板风格显示

1 0
原创粉丝点击