Android View之DrawingCache的使用

Android View类中,有这样一组神奇的截图方法:

setDrawingCacheEnabled(boolean enabled)

buildDrawingCache()

getDrawingCache()

destroyDrawingCache()


四个方法配合使用,让你可以获取任意View的Bitmap缓存,达到截图等作用。先来看一下这四个方法都代表什么:

1.setDrawingCacheEnabled(boolean enabled):

/** *

Enables or disables the drawing cache. When the drawing cache is enabled, the next call * to {@link #getDrawingCache()} or {@link #buildDrawingCache()} will draw the view in a * bitmap. Calling {@link #draw(android.graphics.Canvas)} will not draw from the cache when * the cache is enabled. To benefit from the cache, you must request the drawing cache by * calling {@link #getDrawingCache()} and draw it on screen if the returned bitmap is not * null.

*/

public void setDrawingCacheEnabled(boolean enabled) {

    mCachingFailed = false; setFlags(enabled ? DRAWING_CACHE_ENABLED : 0, DRAWING_CACHE_ENABLED);

}


直译理解,就是一个控制方法,enable设为true则可以使用buildDrawingCache()与getDrawingCache(),反之则无法使用。默认为true。


2.buildDrawingCache()&&buildDrawingCache(boolean autoScale):

/** 

*Forces the drawing cache to be built if the drawing cache is invalid.

*If you call {@link #buildDrawingCache()} manually without calling * {@link #setDrawingCacheEnabled(boolean) *setDrawingCacheEnabled(true)}, you * should cleanup the cache by calling {@link #destroyDrawingCache()} afterwards.

*Note about auto scaling in compatibility mode: When auto scaling is not enabled, * this method will create a bitmap of the same size as *this view. Because this bitmap * will be drawn scaled by the parent ViewGroup, the result on screen might show * scaling artifacts. To *avoid such artifacts, you should call this method by setting * the auto scaling to true. Doing so, however, will generate a bitmap of a *different * size than the view. This implies that your application must be able to handle this * size.

*You should avoid calling this method when hardware acceleration is enabled. If * you do not need the drawing cache bitmap, calling this *method will increase memory * usage and cause the view to be rendered in software once, thus negatively impacting * performance.

*/

public void buildDrawingCache(boolean autoScale) {

...//此处省略杂七杂八的一堆代码

}


巴拉巴拉一堆注释,总之就是只要调用了这个方法,View就会生成一张自身的Bitmap图片。那么这个方法如何生成的,往下看真正的实现方法:

/**

*这才是真正的实现方法

*/

private void buildDrawingCacheImpl(boolean autoScale) {

    ...

    int width = mRight - mLeft;

    int height = mBottom - mTop;

    ...

    try {

        //重点:新建了一个跟View宽高一样的Bitmap

        bitmap = Bitmap.createBitmap(mResources.getDisplayMetrics(), width, height, quality);         bitmap.setDensity(getResources().getDisplayMetrics().densityDpi);

        if (autoScale) {

            mDrawingCache = bitmap;

        } else {

            mUnscaledDrawingCache = bitmap;

        }

        if (opaque && use32BitCache) bitmap.setHasAlpha(false);

    } catch (OutOfMemoryError e) {

        // If there is not enough memory to create the bitmap cache, just

        // ignore the issue as bitmap caches are not required to draw the

        // view hierarchy

        if (autoScale) {

            mDrawingCache = null;

        } else {

            mUnscaledDrawingCache = null;

        }

        mCachingFailed = true;

        return;

        }

    ...

    Canvas canvas;

    ...

    //重点:设置bitmap到 canvas中,准备绘制

    canvas = new Canvas(bitmap);

    ...

    //绘制

    dispatchDraw(canvas);

}


上面代码省略了很多,这里只展示部分关键代码。总结一下,在buildDrawingCache()中,主要做了两件事情:

    1)创建了一个空的bitmap(宽高跟autoScale有关,如果autoScale为false,宽高则为View的宽高)

    2)使用Canvas将视图绘制到bitmap上

3.getDrawingCache()

4.destroyDrawingCache()

这两个方法没啥可说的了,顾名思义就不贴源码了。getDrawingCache()在没有检测到生成过bitmap的时候,会先调用一次buildDrawingCache()生成一张bitmap,如果检测到有的话,则返回之前生成的。

destroyDrawingCache()则是用来销毁之前生成的bitmap,释放资源。如果需要反复获取View的Bitmap视图,则需要配合destroyDrawingCache()方法,不然容易反复获取同一张bitmap。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,313评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,369评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,916评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,333评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,425评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,481评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,491评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,268评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,719评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,004评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,179评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,832评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,510评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,153评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,402评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,045评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,071评论 2 352

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,319评论 0 10
  • Correctness AdapterViewChildren Summary: AdapterViews can...
    MarcusMa阅读 8,857评论 0 6
  • 简介: 提供一个让有限的窗口变成一个大数据集的灵活视图。 术语表: Adapter:RecyclerView的子类...
    酷泡泡阅读 5,159评论 0 16
  • 【日精进打卡第109天】 【知~学习】 《六项精进》2遍共218遍 《大学》2遍共218遍 【经典名句分享】 一味...
    让爱拉近阅读 213评论 0 0
  • 体验入 今天下午看见姜雷在生发群里发的《全员生发》笔记回流里的第四条,分享内容:立住什么?怎么交给?体现员工之魂?...
    Lzr_2017阅读 113评论 0 2