Hi, I used a HashMap as per your suggestion. But when I start the intent A using, startActivity(intent), I am getting an exception like:
01-21 12:28:28.064: E/AndroidRuntime(3432): FATAL EXCEPTION: Thread-8843 01-21 12:28:28.064: E/AndroidRuntime(3432): java.lang.RuntimeException: Parcel: unable to marshal value org.apache.http.message.BasicHttpResponse@41ce14c0 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.os.Parcel.writeValue(Parcel.java:1235) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.os.Parcel.writeMapInternal(Parcel.java:591) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.os.Parcel.writeMap(Parcel.java:575) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.os.Parcel.writeValue(Parcel.java:1166) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.os.Parcel.writeMapInternal(Parcel.java:591) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.os.Bundle.writeToParcel(Bundle.java:1619) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.os.Parcel.writeBundle(Parcel.java:605) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.content.Intent.writeToParcel(Intent.java:6791) 01-21 12:28:28.064: E/AndroidRuntime(3432): at android.app.ActivityManagerProxy.startActivity(ActivityManagerNative.java:1895) Similar to http://stackoverflow.com/questions/3818745/androidruntime-error-parcel-unable-to-marshal-value problem. Because the default implementation of HttpResponse doesnt implement Parcelable/Serializable. Any idea to this problem? Thanks! On Monday, January 21, 2013 10:49:49 AM UTC+2, skink wrote: > > > > a wrote: > > Can you please explain your reply? I didnt undrstand the ID part. > Thanks! > > > > > > ID - something that uniquely identifies your request, let it be long/ > string that you can use as a key to access your request (stored in a > hash map for example) > > pskink > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

