guys... i need to be able to get efficiently 2 things done.
few values(say 10) from a List need to be transferred to a ListView on an Activity
and then at the end... a set of say 10 values from The Listview... has to be transfered to a List
the REASON im doing this is because i want to check if a particular string exists in one of the items of the listview...
that's because unlike List or Spinner ... Listview doesn't have an IndexOf method. .. right?
is there anyway else i could check for a string value in a Lisview.. besides a regular Loop.. like how IndexOf can be done for the others? ?