How to save a custom data type into a Bundle or ArrayList<Map<String,Object>>

  • What's the problem? - Victor
  • one
    use serialization or parselling to represent objects as primitives. Your data must implement the interface Parceble or Serializable - pavlofff

0