I need a component that allows the user to enter a value and checks if it exists by connecting to a certain site on the Internet, and also shows suggestions while the user is typing. I would like to use the SearchView component for that, but found out it has some limitations:
The developer has to create a separate activity that handles the search. I don't want to use a different activity, I just want to connect to the site and check if what the user typed exists.
In order to use the suggestions mechanism, the developer has to build a content provider. Again, I don't want to connect to any DB, I just need to send a search query to the site using standard HTTP messages, and for that I don't need a content provider.
So my question is: Is there a way to use the SearchView component with the customization I need, or do I have to find ugly workarounds that abide by the requirements of the component, but also do what I need?
Thanks.