send image from one activity to another

后端 未结 2 1736
难免孤独
难免孤独 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条回答
  •  萌比男神i
    2021-01-26 01:05

    use this code for get intent

    Intent intent = getIntent();
        ImageView img_view = (ImageView) findViewById(R.id.item_image);
        img_view.setBackgroundResource(intent.getIntExtra("name",1));
    

提交回复
热议问题