Get data from a ListView item and send to another activity (Android) -


i trying send object information activity intent. information in picture.

image

first activity

intent intent = new intent(getapplicationcontext(),anotheractivity.class); intent.putserializable("value", listitem); 

second activity

intent intent=this.getintent(); object list = intent.getserializable("value"); 

Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -