Failed to pass image to another class

前端 未结 2 1157
逝去的感伤
逝去的感伤 2021-01-29 10:22

I\'m trying to pass an image to another class through intent, but it only works for captured image, not for image selected from gallery

相关标签:
2条回答
  • 2021-01-29 11:07

    You shouldn't put bitmap into Bundle. The best way is saving image on storage and pass path uri between activities.

    0 讨论(0)
  • 2021-01-29 11:11
    byte [] recieve = getIntent().getByteArrayExtra("key",defaultValue);
    
    0 讨论(0)
提交回复
热议问题