Use Parcelables to send an object from one Android Activity to another

Опубликовано: 25 Июль 2026
на канале: Lemubit Academy
3,133
28

How do you send an object from one Android Activity to another using Intents? .... you would learn just how to send a Java or Kotlin object from one Android Activity to another Activity. For that, we need to make use of Parcelables. Parcelables are a great way to serialize Java Objects between Contexts in Android. We are going to use a library called parceler, which is a library that makes Android Parcelables made easy through code generation.

To pass the object we are going to use the intent bundle to put the parcelable object.


#LemubitAcademy