Parcelableを実装するクラスInfoに空のwriteToParcel()メソッドがあり、Bundle.putParcelableArrayList()およびBundle.getParcelableArrayList()メソッドがArrayList< Info>で引き続き機能する場合はどうなるか知っています。
public class Info implements Parcelable
{
public int row;
public int column;
public int describeContents()
{
return 0;
}
public void writeToParcel(Parcel out, int flags)
{
// Left empty!
}
}
それで、問題はなぜですか?API ドキュメントや書籍の指示に従って、本当にwriteToParcelメソッドを実装する必要があるのはいつですか?