沉浸式状态栏SystemBarTint、实现状态栏半透明

本文介绍了如何在Android应用中实现沉浸式状态栏的效果,通过SystemBarTint库在Android 4.4及以上版本实现状态栏半透明。文章详细讲解了在布局文件中添加fitsSystemWindows属性以及在Activity中进行版本判断和设置的步骤。
摘要由CSDN通过智能技术生成

https://blog.csdn.net/u011228356/article/details/44061073

沉浸式状态栏SystemBarTint(Android4.4以上适用)

添加依赖:

implementation ‘com.readystatesoftware.systembartint:systembartint:1.0.4’

布局文件

在最顶层的布局(LinearLayout等)里添加

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

fitsSystemWindows:让view根据系统窗口(如status bar)来调整自己的布局,值为true,则调整view的paingding属性来给system windows留出空间。

clipToPadding: 控件的绘制区域是否在padding里面,默认为true,为false表示可以在控件外面显示。

xml文件代码:

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:clipToPadding="false" >
 
    <!--页面相关控件-->
 
</RelativeLayout>

Activity中:

因为该控件在4.4及以上版本才适用,需要增加版本判断

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
    setTranslucentStatus(true);
}

activity代码:

public class MainActivity extends Activity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        // 版本判断
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            setTranslucentStatus(true);
        }
 
        SystemBarTintManager tintManager = new SystemBarTintManager(this);
        tintManager.setStatusBarTintEnabled(true);
        tintManager.setNavigationBarTintEnabled(true);
 
    }
 
    @TargetApi(19)
    private void setTranslucentStatus(boolean on) {
        Window win = getWindow();
        WindowManager.LayoutParams winParams = win.getAttributes();
        final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS;
        if (on) {
            winParams.flags |= bits;
        } else {
            winParams.flags &= ~bits;
        }
        win.setAttributes(winParams);
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值