A developer probably cannot highlight a ListView line item using code. The ability to do that is probably part of the code to 'touch', select and highlight the item.
What can be done with a ListView is
here . There is no Property to change the color of an item or to set focus to an item. When an item is selected manually on a ListView, it sets the focus. Than cannot be accomplished with a code Block. What you see is what you get Wynne.
There are various 'alternative' ways to 'simulate' a ListView described in the Forum. Someone has created an extension that provides a similar display of List data. You can search for them in the Forum using the Search for messages at the top of this screen. One of those options might work for you or you can live with the fact that you cannot programatically select a row from a ListView by setting the selected index and getting the item to highlight.
If you use the index to select, what happens when you put a selection in a Label ... Selection
- Returns the text last selected in the ListView.
? The response, explains it all.
Regards,
Steve