3

Can someone help me understand SimpleCursorAdapter.ViewBinder lifecycle in terms of methods: setViewValue, bindView when are they called? Are instances re-used? Any source to understand all of it?

I basically have a ScrollView that that uses setViewValue to populate items but it doesn't refresh the view value even when setViewValue is called again and again.

user
  • 86,916
  • 18
  • 197
  • 190
Taranfx
  • 10,361
  • 17
  • 77
  • 95

1 Answers1

0

bindView is called first and later setViewValue.

Taranfx
  • 10,361
  • 17
  • 77
  • 95