在应用程序使用android google搜索功能

try {
    		 Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
             String term = editTextInput.getText().toString();
             intent.putExtra(SearchManager.QUERY, term);
             startActivity(intent);
		} catch (Exception e) {
			 		}


http://www.technotalkative.com/android-gridview-example/

你可能感兴趣的:(android)