Know the text value of Listview's Listitem. Based on this value, automatically make the corresponding Listitem in listview selected
I checked the previous information
How do I use it? Thank you
for (int i = 0; i <listview.count; i ++)
{
if (text == listview [i] .tostring ())
{
listview [i] .selected = true;
}
}
The general logic is like this, you can try it in the code.