我正在尝试将对象MyItem的ArrayList从一个活动传递到另一个活动。据我所知,我需要在MyItem类中实现Parcable。所以这就是我到目前为止所做的事情:
public class MyItem implements ClusterItem, Parcelable {
private LatLng mPosition=null;
private String aString;
public MyItem(double lat, double lng, String aString) {
mPosition = new LatLng(lat, lng);
this.aString= aString;
}
@Override
public LatLng getPosition() {
return mPosition;
}
public String getString(){
return aString;
}
public int describeContents() {
return 0;
}
public void writeToParcel(Parcel dest, int flags) {
//dest.writeLngLat ?
dest.writeString(postID);
}
public static final Parcelable.Creator<MyItem> CREATOR
= new Parcelable.Creator<MyItem>() {
public MyItem createFromParcel(Parcel in) {
return new MyItem(in);
}
public MyItem[] newArray(int size) {
return new MyItem[size];
}
};
private MyItem(Parcel in) {
//mPosition = in.readLngLat ?
aString = in.readString();
}
}
第一个问题:我如何在writeToParcel中编写LngLat字段?如何在MyItem(Parcel in)构造函数中删除它?
第二个问题:这是否足够,以便这段代码可以运作?
ArrayList<MyItem> listItems = new ArrayList<>();
Iterator<MyItem> items = cluster.getItems().iterator();
while (items.hasNext()) {
listItems.add(items.next());
}
Intent intent = new Intent(MapsActivity.this, ClusterPosts.class);
intent.putParcelableArrayListExtra("oO", listItems);
startActivity(intent);
然后在CluserPosts:
Intent intent = getIntent();
ArrayList<MyItem> post = intent.getParcelableArrayListExtra("oO");
for(MyItem item : post){
Log.d("elaela", item.getString());
}
答案 0 :(得分:1)
将地块写为 -
dest.writeDouble(mPosition.latitude);
dest.writeDouble(mPosition.longitude);
答案 1 :(得分:0)
您可以将纬度和经度写为仅加倍到目的地,然后形成一个位置。
/etc/rc.local