如何在HashMap中使用Parcelable

时间:2016-12-06 09:59:58

标签: android parcelable serializable

我正在用 HashMap 解决问题。我必须使用Parcelable将数据从一个片段传递到另一个片段。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:2)

最好的方法是使用包装器类,或者只是将数据模型提交到HashMap,这样您就可以使用X509Store store = new X509Store("My", StoreLocation.CurrentUser); store.Open(OpenFlags.ReadOnly); X509Certificate2Collection certificates = store.Certificates.Find(X509FindType.FindBySubjectKeyIdentifier, "XYZ", true); X509Certificate2 certificate = certificates[0]; WebRequestHandler handler = new WebRequestHandler(); handler.ClientCertificates.Add(certificate); HttpClient client = new HttpClient(handler); List<ObjectToReplaceHashMap>发送putParcelableArrayListExtra(String name, ArrayList<? extends Parcelable> value)

有关详细信息,请参阅https://stackoverflow.com/a/5567917/4623782