2つのアクティビティがあります。最初のアクティビティでは、オブジェクトmyObjectのArrayListをインスタンス化します。 2番目のアクティビティでは、このArraylistを取得する必要があります。チュートリアルを見つけました: http://prasanta-paul.blogspot.com/2010/06/Android-parcelable-example.html クラスを実装しました。
パブリッククラスChapitreはParcelableを実装します{
private int numero;
private String titre;
private String description;
private int nbVideo;
private ArrayList<Video> listeVideo;
public Chapitre(int numero, String titre, String description,
ArrayList<Video> listeVideo) {
this.numero = numero;
this.titre = titre;
this.description = description;
this.listeVideo = listeVideo;
this.nbVideo = listeVideo.size();
}
//Getters and Setters ...
private Chapitre(Parcel source) {
numero = source.readInt();
titre = source.readString();
description = source.readString();
nbVideo = source.readInt();
source.readTypedList(listeVideo, Video.CREATOR);
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeInt(numero);
dest.writeString(titre);
dest.writeString(description);
dest.writeInt(nbVideo);
dest.writeTypedList(listeVideo);
}
public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
public Chapitre createFromParcel(Parcel in) {
return new Chapitre(in);
}
public Chapitre[] newArray(int size) {
return new Chapitre[size];
}
};
}
パブリッククラスのビデオはParcelableを実装します{
private String titre;
private int numero;
private String url;
private String description;
private String imageUrl;
private Bitmap image;
private String duree;
/**
*
* @param nom
* @param numero
* @param url
* @param description
*/
public Video(String titre, String url, String description) {
super();
this.titre = titre;
this.url = url;
this.description = description;
}
public Video(int numero, String titre, String url, String description) {
super();
this.titre = titre;
this.url = url;
this.description = description;
this.numero = numero;
}
public Video(String titre,int numero, String url, String description, String imageUrl) {
super();
this.titre = titre;
this.url = url;
this.description = description;
this.imageUrl = imageUrl;
this.numero = numero;
setImage(fetchImage(imageUrl));
}
//Getters and Setters ...
@Override
public int describeContents() {
// TODO Auto-generated method stub
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(titre);
dest.writeInt(numero);
dest.writeString(url);
dest.writeString(description);
dest.writeString(imageUrl);
dest.writeString(duree);
}
public Video(Parcel source){
/*
* Reconstruct from the Parcel
*/
Log.v("TAG", "ParcelData(Parcel source): time to put back parcel data");
titre = source.readString();
numero = source.readInt();
url = source.readString();
description = source.readString();
imageUrl = source.readString();
duree = source.readString();
}
public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
public Video createFromParcel(Parcel in) {
return new Video(in);
}
public Video[] newArray(int size) {
return new Video[size];
}
};
}
しかし、「source.readTypedList(listeVideo、Video.CREATOR);」の行でnullPointExceptionが発生します。クラスChapitreで。
07-21 10:07:28.212: ERROR/AndroidRuntime(682): FATAL EXCEPTION: main
07-21 10:07:28.212: ERROR/AndroidRuntime(682): Java.lang.RuntimeException: Unable to start activity ComponentInfo{com.genicorp.video.proto/com.genicorp.video.proto.Lecture}: Java.lang.NullPointerException
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.app.ActivityThread.performLaunchActivity(ActivityThread.Java:1736)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.app.ActivityThread.handleLaunchActivity(ActivityThread.Java:1752)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.app.ActivityThread.access$1500(ActivityThread.Java:123)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.app.ActivityThread$H.handleMessage(ActivityThread.Java:993)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Handler.dispatchMessage(Handler.Java:99)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Looper.loop(Looper.Java:126)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.app.ActivityThread.main(ActivityThread.Java:3997)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Java.lang.reflect.Method.invokeNative(Native Method)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Java.lang.reflect.Method.invoke(Method.Java:491)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:841)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:599)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at dalvik.system.NativeStart.main(Native Method)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): Caused by: Java.lang.NullPointerException
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Parcel.readTypedList(Parcel.Java:1630)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at com.genicorp.video.proto.Chapitre.<init>(Chapitre.Java:70)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at com.genicorp.video.proto.Chapitre.<init>(Chapitre.Java:65)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at com.genicorp.video.proto.Chapitre$1.createFromParcel(Chapitre.Java:89)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at com.genicorp.video.proto.Chapitre$1.createFromParcel(Chapitre.Java:1)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Parcel.readParcelable(Parcel.Java:1981)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Parcel.readValue(Parcel.Java:1846)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Parcel.readListInternal(Parcel.Java:2092)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Parcel.readArrayList(Parcel.Java:1536)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Parcel.readValue(Parcel.Java:1867)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Parcel.readMapInternal(Parcel.Java:2083)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Bundle.unparcel(Bundle.Java:215)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.os.Bundle.getParcelableArrayList(Bundle.Java:1151)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.content.Intent.getParcelableArrayListExtra(Intent.Java:3634)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at com.genicorp.video.proto.Lecture.onCreate(Lecture.Java:37)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.app.Instrumentation.callActivityOnCreate(Instrumentation.Java:1048)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): at Android.app.ActivityThread.performLaunchActivity(ActivityThread.Java:1700)
07-21 10:07:28.212: ERROR/AndroidRuntime(682): ... 11 more
私はすでにこれに1日を無駄にしているので、誰かが私を助けることができれば、それは素晴らしいことです、
前もって感謝します
うまくいけば、あなたは今までにこれを理解しました。しかし、これに出くわした他の人のために。取得したNullPointerExceptionは、ArrayListが初期化されていないことが原因でした。
これはそれを修正します:
private Chapitre(){
listVideo = new ArrayList<Video>();
}
private Chapitre(Parcel source) {
// Call the above constructor
this();
numero = source.readInt();
titre = source.readString();
description = source.readString();
nbVideo = source.readInt();
source.readTypedList(listeVideo, Video.CREATOR);
}
別の解決策:createTypedArrayList
の代わりにreadTypedList
を使用します。これには、null以外リストオブジェクト参照が必要です。
また、パーセル可能なオブジェクト属性を同じ順序で読み書きする必要があることにも注意してください。マーシャリングの順序がマーシャリングと同じではなかったので、私も2時間かかりました。