0

我正在尝试将一个对象从一个活动发送到另一个活动,因此我正在使用parcelable,虽然我已经创建了发送和接收它的代码,(此代码位于底部)似乎我需要一些代码来能够实际将对象写入包裹。

将对象从 Activity 传递给另一个时出错(使用 Parcelable) 我相信我需要做的与本文中给出的答案相似,所以我需要一个writeToParcel方法,我在下面的代码中已经完成了该方法。(虽然在dest.writeValue(this);我得到错误的地方)说 StackOverFlowError

我相信我可能还需要public static final Parcelable.Creator......虽然不完全知道如何写它(我试图粗略地写一个,它在评论中有点)

另外我不知道我是否需要一些像public Clubs (Parcel source)......

任何帮助将不胜感激。谢谢

public class Clubs implements Parcelable{   
        public void setEvent(String eventType, String date) {
            this.eventType = eventType;
            this.date = date; 
        }

   //contains lots of defined variables and various methods that 
   //aren't relevant for my question and would take up lots of room
   //all like the one above.


        //public static final Parcelable.Creator CREATOR
        //= new Parcelable.Creator() {
        //    public Parcel createFromParcel(Parcel in) {
        //        return (in);
        //    }
        //};

        @Override
        public int describeContents() {
            // TODO Auto-generated method stub
            return 0;
        }

        @Override
        public void writeToParcel(Parcel dest, int flags) {
                  dest.writeValue(this);
        }

}

我的 onItemClick 类将对象放入包裹中,并启动新活动

public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) {
                Clubs mymeeting = db.get(map.get(position));
                Intent i = new Intent();
                Bundle b = new Bundle();
                b.putParcelable("mymeeting", mymeeting);
                i.putExtras(b);
                i.setClass(ListSample.this, DynamicEvents.class);
                startActivity(i);
            }

我的新活动代码的开始,一旦正确发送对象,稍后将对其进行编辑

public class DynamicEvents extends Activity
{
  protected void onCreate(Bundle savedInstanceState)
  {
      super.onCreate(savedInstanceState);
        Bundle b = getIntent().getExtras();
        // Create the text view
        TextView textView = new TextView(this);
        textView.setTextSize(20);
        textView.setText(" " + b.getParcelable("mymeeting").toString());

        // Set the text view as the activity layout
        setContentView(textView);
  } 
}  
4

1 回答 1

0

重写writeToParcel方法为

@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(eventType);
    dest.writeString(date);
}

可能不允许您直接编写自定义 Java 对象。要么单独编写标准数据值,要么制作您的对象并在对象上serializable使用方法。writeSerializableParcel

于 2013-09-07T21:12:24.360 回答