0
我正在解決問題HashMap。我必須使用Parcelable將數據從一個片段傳遞到另一個片段。我怎樣才能做到這一點?如何使用Parcelable with HashMap
我正在解決問題HashMap。我必須使用Parcelable將數據從一個片段傳遞到另一個片段。我怎樣才能做到這一點?如何使用Parcelable with HashMap
最好的辦法是使用包裝類,或者只是提交一個數據模型到HashMap中,所以你可以有一個List<ObjectToReplaceHashMap>
您可以與putParcelableArrayListExtra(String name, ArrayList<? extends Parcelable> value)
和getParcelableArray(String key)
使用捆綁...它是一種地圖 – Selvin
正在尋找如何使一個HashMap Parcelable?! – Mitchapp
你可以按照這個[鏈接](http://stackoverflow.com/questions/5566921/androidpassing-a-hash-map-between-activities)來得到你的答案。 –