Mapping to custom objects
You can map your custom objects starting from MBSection automatically using MBurgerMapper
class.
Using the commodity class MBFieldsMapping
which fields of your custom class should be mapped with the fields of the MBSection you named on your Project dashboard. Your destination object should at least override getters and setters and if you wish to obtain simple values or MBurger object values for:
Images -> First
MBImage
(only an object, not an array)Media & Documents -> First
MBFile
(only an object, not an array)Addresses -> Latitude, longitude or textual address
You will find all possible simple data inside the MBMappingArgs
class.
Make sure your custom class is public and that provides getters and setters for all fields you wish to map.
For example, for a simple News
class with title and MBurger image
Can be mapped this way:
If you need to map images, the SDK will return a MBImages object, which contains an array of MBImage.
If you want an array of URLs you will have to set getSimpleValues to true.
Due to the new nature of Android 9 this functionaity could give you light greylist logcat messages because it uses reflections.
For now on, there should be no problem, but this functionality may change with new Android releases.
Last updated