Android普通截屏(不包括状态栏内容但有状态栏占位)

本文介绍了如何在Android中截取屏幕快照,包括使用getDecorView()获取屏幕视图,通过getDrawingCache()方法获得缓存的Bitmap。此方法将截取的内容不包含状态栏,但保留了状态栏的占位区域。同时提到了保存截图到外部存储需要的读写权限。
摘要由CSDN通过智能技术生成
    public static Bitmap normalShot(Activity activity) {
        View decorView = activity.getWindow().getDecorView();
        decorView.setDrawingCacheEnabled(true);
        decorView.buildDrawingCache();
        Bitmap bitmap = Bitmap.createBitmap(decorView.getDrawingCache(), 0, 0,
                decorView.getMeasuredWidth(), decorView.getMeasuredHeight());

        decorView.setDrawingCacheEnabled(false);
        decorView.destroyDrawingCache();
        return bitmap;
    }

首先利用Window的getDecorView()方法获取到屏幕上包含状态栏部分和用户应用程序里的内容。[ Retrieve the top-level window decor view (containing the standard window frame/decorations and the client's content inside of that). ]


然后使用decorView.getDrawingCache()方法返回被缓存的bitmap。[ Returns the bitmap in whic

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值