i want to serialize an intent after i rcv it using ObjectOutputStream , but i got this exiption
java.io.NotSerializableException: android.content.Intent
is there away so i could serialize the intent, thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The closest you can get is to flatten it via the Parcelable protocol, and get the byte[] from marshall() method.