I’m using Intent(context, destinationClass) to switch activities. However, I would like to bring some objects along to the next acitivty. I know about putExtra, but I only find methods usable for strings, integers, etc.
I’m forwarding a socket if that’s any help!
There are lots of options to accomplish what you’re looking for.
Applicationhave it implement getters/setters for your variables.Intentextra implementParcelable.It shouldn’t be too hard to find something that fits your specific needs.