i want to implement a search Text to listView,
i load the listView items from server.
Currently, everytime that user enters something to the searchText i remove all items in the listView and add them again to the listView (if they contain the user entered string)
However it takes alot of time, to remove the whole listView and then start reload all items to list again
Therefore i want to loop all over the listView and to invisible the un-matched rows, is it possible? (something like View.GONE)
for example, i want to invisible the k-th item row in listView.
Also, i will want to change this item row to visible again.
thanks alot