I am working on an android app that I am attempting to determine the best way of going about a certain problem. The problem is that I would like the user to have ability to input a food choice (mexican, italian, etc), have the app google search for what's nearby. Finally return the results of that search in list format. However, I want to hide the actual google search from the user and just send them the results. Now i know how to create activities with intents and even was using this link to try using built in google search: Android: Return search query to current activity
However,
A) is using the built in google search the best way to go about it? If so, is there a way to hide that activity from popping up and the user seeing it?
or B) is there a better way of going about this?