我在使用Parcelable
传递类中的列表时遇到问题。我的字符串(partNbr和partdescription)的值通过ok,但是我丢失了Write和Read之间的列表。
我没有走太多可序列化或JSON
路线的运气,但是如果有人可以提供一个我需要的c#示例的好例子。
我愿意再次尝试。我读错了值吗?任何帮助将不胜感激。相关代码在下面发布。
public class Part : Java.Lang.Object, IParcelable
{
public string partNbr { get; set; }
public string partDescription { get; set; }
public List<string> uomList { get; set; }
public List<int> qtyList { get; set; }
#region IParcelable Implementation
private static readonly PartXParcelableCreator<Part> _creator =
new PartXParcelableCreator<Part>((parcel) => new Part(parcel));
[ExportField("CREATOR")]
public static PartXParcelableCreator<Part> GetCreator()
{
return _creator;
}
public Part(Parcel parcel)
{
partNbr = parcel.ReadString();
partDescription = parcel.ReadString();
parcel.ReadStringList(uomList);
parcel.ReadList(qtyList, null);
}
public int DescribeContents()
{
return 0;
}
public void WriteToParcel(Parcel dest, [GeneratedEnum] ParcelableWriteFlags flags)
{
//debugging here shows a count of 3 items in uomList and 6 in qtyList
dest.WriteString(partNbr);
dest.WriteString(partDescription);
dest.WriteStringList(uomList);
dest.WriteList(qtyList);
}
#endregion
}
public class PartXParcelableCreator<T> : Java.Lang.Object, IParcelableCreator
where T : Java.Lang.Object, new()
{
private readonly Func<Parcel, T> _createFunc;
public PartXParcelableCreator(Func<Parcel, T> createFromParcelFunc)
{
_createFunc = createFromParcelFunc;
}
#region IParcelableCreator Implementation
public Java.Lang.Object CreateFromParcel(Parcel source)
{
//tried debugging source values here, but List values are null at this point
return _createFunc(source);
}
public Java.Lang.Object[] NewArray(int size)
{
return new T[size];
}
#endregion
}
最佳答案
正如@Jason所说,您可以尝试使用JSON.NET
软件包。
我正在尝试,但是对象在下一个活动中显示为空。
不要扩展Java.Lang.Object
,像这样修改您的Part
类:
public class Part
{
public string partNbr { get; set; }
public string partDescription { get; set; }
public List<string> uomList { get; set; }
public List<int> qtyList { get; set; }
}
然后应该可以了。
关于c# - 可打包的List <string>,List <int>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47929429/