send image from one activity to another

后端 未结 2 1760
难免孤独
难免孤独 2021-01-26 00:22

I am trying to send an image from one activity to another but I dont know how to set the imageview.

here is how I send the image and other stuff

Intent i         


        
2条回答
  •  半阙折子戏
    2021-01-26 00:57

    Dont you think

    img_view.setImageBitmap(intent.getByteArrayExtra("quantity"));
    

    should be

    img_view.setImageResource(intent.getIntExtra("name",R.drawable.default_image));
    

提交回复
热议问题