Is there a search example using customlistview / xCLV where
1. result is all rows from a single column matching the search string in multiple columns
PS: There is not much data to search from so Trie / Index methods might be an overkill and also they might not work with multiple columns unless tweaked.
1. result is all rows from a single column matching the search string in multiple columns
B4X:
Col1 Col2 Col3 Col4
Alpha 21 25 35
Beta 15 25 0
Gamma 32 26 67
Delta 18 0 36
so for search string "0" it should return
Col1
Beta
Delta
PS: There is not much data to search from so Trie / Index methods might be an overkill and also they might not work with multiple columns unless tweaked.