24
public class Category implements Parcelable {

    private int mCategoryId;
    private List<Video> mCategoryVideos;

 public int getCategoryId() {
        return mCategoryId;
    }

    public void setCategoryId(int mCategoryId) {
        this.mCategoryId = mCategoryId;
    }

 public List<Video> getCategoryVideos() {
        return mCategoryVideos;
    }

    public void setCategoryVideos(List<Video> videoList) {
        mCategoryVideos = videoList;
    }

@Override
    public void writeToParcel(Parcel parcel, int i) {
        parcel.writeInt(mCategoryId);
        parcel.writeTypedList(mCategoryVideos);
    }

    public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
        public Category createFromParcel(Parcel parcel) {
            final Category category = new Category();

            category.setCategoryId(parcel.readInt());
            category.setCategoryVideos(parcel.readTypedList()); */// **WHAT SHOULD I WRITE HERE***

            return category;
        }

        public Category[] newArray(int size) {
            return new Category[size];
        }
    };

}

私のコードでは、区画から実装するモデルを使用しています...この行に書いた叫び声を誰かに教えてcategory.setCategoryVideos(parcel.readTypedList()) もらえますか?役立つ投稿が見つかりませんでした。

編集:category.setCategoryVideos(parcel.readTypedList(mCategoryVideos,Video.CREATOR));ここで私が持っているmCategoryVideosはエラーを解決できません。

4

3 に答える 3

36

Parcelable クラスにはリスト メソッドがあります。ここでそれらを確認できます。

readList (リスト outVal、ClassLoader ローダー)

writeList (リスト値)

あなたの場合、次のようになります。

List<Object> myList = new ArrayList<>();

parcel.readList(myList,List.class.getClassLoader());
category.setCategoryVideos(myList);
于 2013-03-21T09:37:58.433 に答える
2
public static final Parcelable.Creator<Category> CREATOR = new Parcelable.Creator<Category>() {
            public Category createFromParcel(Parcel in) {
                return new Category(in);
            }

            public Category[] newArray(int size) {
                return new Category[size];
            }
        };

private Category(Parcel in) {
    String[] data = new String[1];
    in.readStringArray(data);
    mCategoryId = Integer.parseInt(data[0]);
}

public void writeToParcel(Parcel dest, int flags) {
    dest.writeStringArray(new String[]{
            mCategoryId
    });
}

それからあなたの活動で。

public void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    outState.putParcelableArrayList("mCategoryVideos", (List<? extends Parcelable>) mCategoryVideos);
}

public void onRestoreInstanceState(Bundle inState) {
    super.onRestoreInstanceState(inState);
    if (inState != null) {
        mCategoryVideos = inState.getParcelableArrayList("mCategoryVideos");
        // Restore All Necessary Variables Here
    }
}
于 2013-03-21T09:37:43.560 に答える