I have one application containing some text fields and radio button.now I want to take these values of text views and radio buttons and send it to Google for searching when i click on Search button, and after searching i want to also receive data from Google.Currently am able to switch to google using Intent,but I am not able to send values of text fields to google.
I have one application containing some text fields and radio button.now I want to
Share
I assume you’re launching your
Intentusing a url likeInstead, you can use
where myParam is the thing you’re searching for.
You can get this text from an
EditTextlike thisThen you can set your url in the
Intentyou launch to beTo search for multiple parameters, separate them using ‘+’s. E.g.
The following question offers a way to handle the returned results: Chrome extension to parse google search results