我在v2 Google Play服务中使用
Google’s LatLng class.那个特定的类是final,不实现java.io.Serializable.有没有办法让LatLng类实现Serializable?
public class MyDummyClass implements java.io.Serializable { private com.google.android.gms.maps.model.LatLng mLocation; // ... }
我不想声明mLocation短暂.
解决方法
它不是可序列化的,但它是可包装的,如果这将是一个选项.如果不是,你可以自己处理序列化:
public class MyDummyClass implements java.io.Serialiazable { // mark it transient so defaultReadObject()/defaultWriteObject() ignore it private transient com.google.android.gms.maps.model.LatLng mLocation; // ... private void writeObject(ObjectOutputStream out) throws IOException { out.defaultWriteObject(); out.writeDouble(mLocation.latitude); out.writeDouble(mLocation.longitude); } private void readObject(ObjectInputStream in) throws IOException,ClassNotFoundException { in.defaultReadObject(); mLocation = new LatLng(in.readDouble(),in.readDouble()); } }