Hi all,
within my REST API response I have this json object (it's an image within a drupal article):
My target is to display the image within the android app (in my case I have to show a list of articles with all the related images and titles).
Which is the correct code snippet (using OKHttpUtils2 framework) to do this at runtime without save the image within the local android db in order to have only one centralized data source on drupal db ?
Thank you in advance for your help
Luca.
within my REST API response I have this json object (it's an image within a drupal article):
B4X:
"field_media_image": [
{
"target_id": 10,
"target_type": "media",
"target_uuid": "6e4aa020-0713-4da4-92d7-cc4a9c70bc35",
"url": "/drupal/en/media/10/edit"
}
]
My target is to display the image within the android app (in my case I have to show a list of articles with all the related images and titles).
Which is the correct code snippet (using OKHttpUtils2 framework) to do this at runtime without save the image within the local android db in order to have only one centralized data source on drupal db ?
Thank you in advance for your help
Luca.