Android ACTION_WEB_SEARCH

I can not get ACTION_WEB_SEARCH to work correctly, does this require any permissions for AndriodManifest.xml?

This is my code:

 String q = edittext.getText().toString();
 Intent myIntent = new Intent(Intent.ACTION_WEB_SEARCH, Uri.parse(q));
 startActivity(myIntent);

Any help would be greatly appreciated.

Platform 2.0.

+3
source share
1 answer
 String q = edittext.getText().toString();
 Intent intent = new Intent(Intent.ACTION_WEB_SEARCH );
 intent.putExtra(SearchManager.QUERY, q);
 startActivity(intent);
+17
source

Source: https://habr.com/ru/post/1728693/


All Articles