对于在xml drawable中定义的形状,android – BitmapFactory.decodeResource()返回null

前端之家收集整理的这篇文章主要介绍了对于在xml drawable中定义的形状,android – BitmapFactory.decodeResource()返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看了很多类似的问题,虽然我没有找到正确的答案我的查询

我有一个drawable,在shape.xml中定义

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >

    <solid android:color="@color/bg_color" />
</shape>

为了执行一些操作,我想把它转换成Bitmap对象,但BitmapFactory.decodeResource()返回null。

这是我如何做的:

Bitmap bmp = BitmapFactory.decodeResource(getResources(),R.drawable.shape);

我究竟做错了什么? BitmapFactory.decodeResource()是否适用于xml定义的drawable?

由于您要加载Drawable而不是位图,请使用以下命令:
Drawable d = getResources().getDrawable(...);

把它变成一个位图:

public static Bitmap drawableToBitmap (Drawable drawable) {

    if (drawable instanceof BitmapDrawable) {
        return ((BitmapDrawable)drawable).getBitmap();
    }

    Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),drawable.getIntrinsicHeight(),Config.ARGB_8888);
    Canvas canvas = new Canvas(bitmap); 
    drawable.setBounds(0,canvas.getWidth(),canvas.getHeight());
    drawable.draw(canvas);

    return bitmap;
}

取自:How to convert a Drawable to a Bitmap?

原文链接:https://www.f2er.com/xml/293219.html

猜你在找的XML相关文章