Parcelable Class For NameValuePair?
I want to pass ArrayList nameValuePairs one activity to another. I wrote parcelable class for this. Parcelable Class: /**Getters/Setters have been removed t
Solution 1:
you don't have getname
and getvalue
in
public class BasicNameValuePair implements Parcelable {
private String name;
private String value;
public String getName() {
return name;
}
public String getValue() {
return value;
}
********************* etc*****************
}
Post a Comment for "Parcelable Class For NameValuePair?"