converting drawable resource image into bitmap

前端 未结 6 1847
星月不相逢
星月不相逢 2020-12-02 05:22

I am trying to use the Notification.Builder.setLargeIcon(bitmap) that takes a bitmap image. I have the image I want to use in my drawable folder so how do I con

6条回答
  •  死守一世寂寞
    2020-12-02 05:38

    Here is another way to convert Drawable resource into Bitmap in android:

    Drawable drawable = getResources().getDrawable(R.drawable.input);
    Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
    

提交回复
热议问题