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

android 如何让StatusUtil启动页前面的图片也侵入状态栏

程序员文章站 2022-03-26 19:34:30
android 如何让statusutil启动页前面的图片也侵入状态栏,就是 添加一个value-21的style样式文件。 xml version="1.0" encodi...

android 如何让statusutil启动页前面的图片也侵入状态栏,就是 添加一个value-21的style样式文件。

xml version="1.0" encoding="utf-8"?>
<resources>

 <style name="compatapptheme" parent="appbasetheme">
  <item name="android:windownotitle">trueitem>
  <item name="android:windowfullscreen">falseitem>
  <item name="android:windowactionbar">falseitem>
  <item name="windowactionmodeoverlay">trueitem>
  <item name="android:windowdrawssystembarbackgrounds">trueitem>
  <item name="android:statusbarcolor">@android:color/transparentitem>
 style>

resources>