美文网首页
Android 将App的内容延伸到状态栏/导航栏

Android 将App的内容延伸到状态栏/导航栏

作者: dev晴天 | 来源:发表于2018-08-08 17:03 被阅读0次
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical">
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:background="@color/colorAccent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    </android.support.v7.widget.Toolbar>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="测试"
        android:textColor="#000000"/>

</LinearLayout>

代码中控制

  View decorView = getWindow().getDecorView();
        int option = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN|View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
        decorView.setSystemUiVisibility(option);
        getWindow().setStatusBarColor(Color.TRANSPARENT);

效果:(没有设置前状态栏(显示事件电量栏)是黑色背景,切与导航栏分开的,设置后效果如下图)

image.png

参考:
https://blog.csdn.net/dahaohan/article/details/52175190

相关文章

网友评论

      本文标题:Android 将App的内容延伸到状态栏/导航栏

      本文链接:https://www.haomeiwen.com/subject/vruxbftx.html