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

github - Git errors while pushing -

php - Using grpc in Laravel, "Class 'Grpc\ChannelCredentials' not found." -

c++ - How can I delete a QSharedPointer -