Android Studio实现标题栏和状态栏的隐藏
程序员文章站
2023-12-01 16:21:46
android studio在实现隐藏标题栏和状态栏上和eclipse是完全不一样的。
在eclipse上隐藏标题栏和状态栏的代码如下:
方法一: requestwin...
android studio在实现隐藏标题栏和状态栏上和eclipse是完全不一样的。
在eclipse上隐藏标题栏和状态栏的代码如下:
方法一: requestwindowfeature(window.feature_no_title);
方法二:getwindow().setflags(windowmanager.layoutparams.flag_fullscreen,
windowmanager.layoutparams.flag_fullscreen);
今天在做闪屏页开发时,想把标题栏和状态栏隐藏掉,但这两种方法尝试后都不行。
最后的解决方案:
①先在values的styles.xml中添加子标签:
<style name="notitle" parent="theme.appcompat.daynight.noactionbar"> <item name="android:windownotitle">true</item> <item name="android:windowfullscreen">true</item> </style>
②在清单文件中,需要隐藏标题栏和状态栏的activity引用此样式:
<activity android:name=".splashactivity" android:theme="@style/notitle">
经过这两步,便是一个没有标题栏和状态栏的完美闪屏页了!
ps:下面看下android studio 去掉标题栏状态栏的完整代码
**网上关于android studio的教程比较少,去掉标题栏的方法大多不能直接使用。
在android studio中其实更简单一些,在app/res/values/styles.xml文件中加个标签就可以了**
<item name="windownotitle">true</item>
完整代码如下,可以看到这段代码放在什么位置。
<resources> <!-- base application theme. --> <style name="apptheme" parent="theme.appcompat.light.darkactionbar"> <!-- customize your theme here. --> <item name="colorprimary">@color/colorprimary</item> <item name="colorprimarydark">@color/colorprimarydark</item> <item name="coloraccent">@color/coloraccent</item> <item name="windownotitle">true</item> </style> </resources>
加到 加载视图前面
//取消状态栏 getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen);
总结
以上所述是小编给大家介绍的android studio实现标题栏和状态栏的隐藏,希望对大家有所帮助
上一篇: Java实现企业微信通讯录管理
下一篇: PS给图片添加阴影方法
推荐阅读
-
Android实现状态栏和虚拟按键背景颜色的变化实例代码详解
-
Android实现的状态栏定制和修改方法
-
Android Studio实现标题栏和状态栏的隐藏
-
Android ListView中headerview的动态显示和隐藏的实现方法
-
Android Bitmap的截取及状态栏的隐藏和显示功能
-
Android五种隐藏状态栏和标题栏的方法
-
android自定义ListView实现底部View自动隐藏和消失的功能
-
Android 顶部标题栏随滑动时的渐变隐藏和渐变显示效果
-
Android编程实现获取标题栏、状态栏的高度、屏幕大小及模拟Home键的方法
-
android 动态控制状态栏显示和隐藏的方法实例