-1

I want to send the selected data of list to another activity after button click

This is the image

Xenolion
  • 12,035
  • 7
  • 33
  • 48

1 Answers1

0

On button click you check which checkboxs were checked with the method isChecked() and send the information using an intent. To receive the data on the other activity you can use a bundle.

You can check how to send/receive data to another activity using a bundle in this question:

Tomás Rodrigues
  • 519
  • 2
  • 17