有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java Put可通过intent打包

我试图通过intent将可包裹对象从A活动传递到B活动:

Intent intent = new Intent (A.this, B.class);

intent.putExtra ("post", mypost); // where post implements Parcelable`

B活动中,我通过以下方式获得post对象:

Post myPost = getIntent().getParcelableExtra("post");

B活动中,myPost对象字段是混合的,例如,我在Post模型中有postText和postDate字段,该字段在B活动中的值是混合的

为什么会发生这种情况?我的模型类如下所示:

公共类Post实现了可包裹、可序列化{

private static final long serialVersionUID = 2L;

@SerializedName("author")
private User author;

@SerializedName("comments_count")
private String commentsCount;

@SerializedName("image")
private String imageToPost;

@SerializedName("parent_key")
private String parentKey;

@SerializedName("created_date")
private String postDate;

@SerializedName("id")
private String postId;

@SerializedName("text")
private String postText;

@SerializedName("title")
private String postTitle;

@SerializedName("shared_post_id")
private String sharedPostId;

@SerializedName("url")
private String urlToPost;

@SerializedName("video")
private String videoToPost;

public Post() {
}

public Post(Parcel in) {
    author = (User) in.readValue(getClass().getClassLoader());
    commentsCount = in.readString();
    imageToPost = in.readString();
    parentKey = in.readString();
    postDate = in.readString();
    postId = in.readString();
    postText = in.readString();
    postTitle = in.readString();
    sharedPostId = in.readString();
    urlToPost = in.readString();
    videoToPost = in.readString();
}

public static final Creator<Post> CREATOR = new Creator<Post>() {
    @Override
    public Post createFromParcel(Parcel in) {
        return new Post(in);
    }

    @Override
    public Post[] newArray(int size) {
        return new Post[size];
    }
};

public User getAuthor() {
    return author;
}

public void setAuthor(User author) {
    this.author = author;
}

public String getPostDate() {
    return postDate;
}

public void setPostDate(String postDate) {
    this.postDate = postDate;
}

public String getPostTitle() {
    return postTitle;
}

public void setPostTitle(String postTitle) {
    this.postTitle = postTitle;
}

public String getPostText() {
    return postText;
}

public void setPostText(String postText) {
    this.postText = postText;
}

public String getPostId() {
    return postId;
}

public void setPostId(String postId) {
    this.postId = postId;
}

public String getUrlToPost() {
    return urlToPost;
}

public void setUrlToPost(String urlToPost) {
    this.urlToPost = urlToPost;
}

public String getImageToPost() {
    return imageToPost;
}

public void setImageToPost(String imageToPost) {
    this.imageToPost = imageToPost;
}

public String getVideoToPost() {
    return videoToPost;
}

public void setVideoToPost(String videoToPost) {
    this.videoToPost = videoToPost;
}

public String getParentKey() {
    return parentKey;
}

public void setParentKey(String parentKey) {
    this.parentKey = parentKey;
}

public String getCommentsCount() {
    return commentsCount;
}

public void setCommentsCount(String commentsCount) {
    this.commentsCount = commentsCount;
}

public String getSharedPostId() {
    return sharedPostId;
}

public void setSharedPostId(String sharedPostId) {
    this.sharedPostId = sharedPostId;
}

@Override
public int describeContents() {
    return 0;
}

@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeValue(author);
    dest.writeString(commentsCount);
    dest.writeString(imageToPost);
    dest.writeString(parentKey);
    dest.writeString(postDate);
    dest.writeString(postId);
    dest.writeString(postText);
    dest.writeString(postTitle);
    dest.writeString(sharedPostId);
    dest.writeString(urlToPost);
    dest.writeString(videoToPost);
}

}


共 (1) 个答案

  1. # 1 楼答案

    添加描述内容和writeToParcel

    示例:

    @Override
    public int describeContents() {
        return 0;
    }
    
    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(name);
        dest.writeString(email);
        dest.writeString(pass);
        dest.writeFloat(amountPaid);
        dest.writeString(url);
        dest.writeInt(age);
    }