sereializable (1) 썸네일형 리스트형 [안드로이드 스튜디오]다른 액티비티로 데이터 전달 시 클래스의 객체를 전달하는 방법 안드로이드에서는 Serializable 인터페이스를 구현하여 클래스의 객체를 인텐트를 통해 다른 액티비티로 전달할 수 있다. contact 클래스:package com.kks.simplecontacts.model;import java.io.Serializable;public class contact implements Serializable { public String name; public String phone; public contact(){ } public contact(String name, String phone) { this.name = name; this.phone = phone; } public String getName().. 이전 1 다음