How to implement loading in ImageView list item? I plan to upload pictures using Picasso.

  • Give links to those examples from the network, which describe the process of loading pictures in ListView, which did not help you solve your problem. - Yuriy SPb
  • There was no such example that the SimpleCursorAdapter appeared, which fills the TextView of the list item, and images from the network were uploaded to the ImageView, did not meet. - Vorskla
  • Did you try to combine the writing of your adapter + Cursor ? .. - Yuriy SPb
  • In general, it is almost impossible to display something through stock adapters except for a single line of text. - Yuriy SPb
  • For any adapter, you need to override the getView method, in which you can customize your View as you like. - Vladyslav Matviienko

1 answer 1

 ImageView imageView = (ImageView) view.findViewById(R.id.imageView) Picasso.with(this).load(//Ваш Url//).into(imageView);