How do I go about doing this either with Android View or with the B4A version when there is text in the view that causes the list to be filtered when shown (This behavior seems odd too since it should only filter when typing, not when showing the list by code).
Best and most simple answer I've seen is calling performFiltering("", 0) which would filter it to be all values and show the list. Unfortunately I see it in the documents, but not in Eclipse (Looks like it is Protected, so can B4A even call it since it is just wrapping the view?). 2nd best answer was setting the text of the view to "" then showing the dropdown list, but this seems like a hack (plus I have to restore the text and the filtering sounds like it is done Asynchronous which may give problems).
Best and most simple answer I've seen is calling performFiltering("", 0) which would filter it to be all values and show the list. Unfortunately I see it in the documents, but not in Eclipse (Looks like it is Protected, so can B4A even call it since it is just wrapping the view?). 2nd best answer was setting the text of the view to "" then showing the dropdown list, but this seems like a hack (plus I have to restore the text and the filtering sounds like it is done Asynchronous which may give problems).