How to send the bitmap into bundle

后端 未结 5 980
北荒
北荒 2021-02-02 16:11

I\'m new to android. I want to pass bitmap into Bundle. But I can\'t find any solution for it. Actually, I\'m confused. I want to display an image in a Dialog fragment. But I do

5条回答
  •  爱一瞬间的悲伤
    2021-02-02 16:20

    If you want to pass image using bundle then i am sure it will help you.

    Bundle bundle = new Bundle();
    bundle.putParcelable("bitmap", bitmap);
    fragment.setArguments(bundle);
    

提交回复
热议问题