python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Passing generic typed object between activities via intent
In my application I am trying to pass a generic worker object (which is parcelable) between activities. However, when I get parcelableExtra from intent, it creates new instance of the worker.
As you c...
alian
Votes: 0
Answers: 2
Property would not be serialized into a 'Parcel'. Add '@IgnoredOnParcel' annotation to remove the warning
Hey I am working in android Kotlin. I am getting this weird warning
Property would not be serialized into a 'Parcel'. Add '@IgnoredOnParcel' annotation to remove the warning
I don't want to add @Igno...

Kotlin Learner
Votes: 0
Answers: 1
How to Parcelize a MutableList in kotlin?
I have an App that lets users drag and draw boxes on a custom view. I want to persist the state of these boxes(list of boxes) across orientation change using onSavedInstanceState(): Parcelable and onR...
Daniel Iroka
Votes: 0
Answers: 1
Why do Activity intents may need setExtrasClassLoader but there is nothing similar for Fragment arguments?
I am having a problem with error: Class not found when unmarshalling: com.package.MyParcelableClass (which somehow only presents on release build)
I read about using setExtrasClassLoader to make it c...

htafoya
Votes: 0
Answers: 0