Search code examples
androidandroid-intentksoap2android-ksoap2serializable

How to pass SoapObject from one Activity to another in an intent


I need to pass a SoapObject from one Activity to another, in an intent. Is that possible?

I can't see it implementing Serializable, but it does implement KvmSerializable (although I don't know whatever it is).


Solution

  • Passing it via an intent seems overkill. Just have it stored in a singleton or a static class that is accessible from both activities.