Android 沉浸式状态栏(像IOS那样的状态栏与应用统一颜色样式)

Android 沉浸式状态栏(像IOS那样的状态栏与应用统一颜色样式)

注意:这个特性是Andorid4.4支持的,最少要API19才可以使用。

下面介绍一下使用的方法,非常得简单:

1:在Activity的onCreate()方法中添加如下代码:

//透明状态栏  
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);  
//透明导航栏  
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);  

 2.在Activity的布局文件中添加如下代码:

android:fitsSystemWindows="true"  
android:clipToPadding="true"  

例如:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
      
    android:fitsSystemWindows="true"  
    android:clipToPadding="true"  
  
    android:background="#ffffff"  
    android:orientation="vertical"  
    tools:context=".MainActivity">  

    <TextView  
        android:layout_width="match_parent"  
        android:layout_height="100dp"  
        android:background="#009959" />  
</LinearLayout> 

3.如若状态栏是白色的,将上面两行属性代码放在xml中首层级下的第一个子控件布局中。具体如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:background="#ffffff"  
    android:orientation="vertical"  
    tools:context=".MainActivity">  

    <TextView  
        android:fitsSystemWindows="true"  
        android:clipToPadding="true"  
  
        android:layout_width="match_parent"  
        android:layout_height="100dp"  
        android:background="#009959"  
        android:text="你好,请问你有男朋友吗"/>  
</LinearLayout>  

 

转载于:https://my.oschina.net/u/2320057/blog/693258

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值