使用Timer类写入Parceable

时间:2018-02-06 15:25:16

标签: java android timer

我是Android应用的新手,我会使用Parceable,通过 Intent 发送我的课程。

我编写了一个具有一些属性的类,其中包括id,description等属性,我有一个 Timer

MyClass类似于:

MyClass implements Parcelable{
  private int id;
  private String description
  private Timer chrono; 

  @Override
  public void writeToParcel(Parcel dest, int flags) {
    dest.writeInt(id);
    dest.writeString(description);
    //and for  write Timer?

  }
  public MyClass(Parcel in) {
    id = in.readInt();
    description = in.readString();
    //for read timer
  }
} 

那么如何在我的班级中使用计时器

0 个答案:

没有答案