欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android Studio实现标题栏和状态栏的隐藏

程序员文章站 2023-10-18 23:53:25
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实现标题栏和状态栏的隐藏,希望对大家有所帮助