[Android] Parcelable 인터페이스
▶ Parcelable interface안드로이드에서는 Serializable 인터페이스와 유사한 Parcelable 인터페이스를 권장하는데, 그 이유는 이 인터페이시를 이용해 내부적인 데이터 전달 메커니즘이 만들어져 있기 때문입니다. 이 인터페이스를 사용하면 데이터를 전달하기 위해 객체를 직접 번들에 추가할 수 있습니다. Parcelable 인터페이스를 구현하여 객체를 직접 전달하려면 다음과 같은 두 가지 메소드를 구현해야 합니다. [Reference]public abstract int describeContents()public abstract void writeToParcel(Parcel dest, int flags) writeToParcel() 메소드는 객체가 가지고 있는 데이터를 Parcel 객..
Android 개발
2012. 8. 11. 17:49