// We assume we have an array: DaysWeather[] input;Parcelable[] output = new Parcelable[input.length];for (int i=input.length-1; i>=0; --i) { output[i] = input[i];}Intent i = new Intent(...);i.putExtra("myArray", output);
http://stackoverflow.com/questions/4181885/how-do-you-pass-an-object-array-to-an-activity
아 그냥 object는 parcelable로 안되는건가..
IPC의 형태인 번들에 넣어서 보내는 방법을 왜 하려고 하는지 모르겠네요..
외부 Task에 연동하려고 하는거라면 모를까나.. 그런데 본인 어플에서
타 어플을 지원하기 위해서 만들지는 않을텐뎅..
로그인 유지