Would very much appreciate any help or hint on were to go next.
I\'m trying to change the content of a row in ListView programmatically. In one row there are 3 TextV
For CursorAdapter and subclasses, you should override newView() and bindView() instead of getView().
CursorAdapter
newView()
bindView()
getView()
More importantly, though, you should not get calling super.getView(). That is where you are crashing.
super.getView()