Passing ArrayList Between Activities

后端 未结 2 2080
孤独总比滥情好
孤独总比滥情好 2021-02-06 15:34

i\'ve implemented a Parcelable class:

public class Evento implements Parcelable {
    private int;
    private String ;
    private String imagen;
    //more at         


        
2条回答
  •  醉话见心
    2021-02-06 16:29

    Parcelable is much better than serialization in a performance wise and other features.

    refer this link:

    http://www.3pillarglobal.com/insights/parcelable-vs-java-serialization-in-android-app-development

提交回复
热议问题