Normally you pass data from one activity to another using the Intent.
Intent intent = new Intent(SearchActivity.this, VideoActivity.class);
intent.putString(VideoActivity.SEARCH_PARAMETER_KEY, searchResult);
startActivity(intent);
where SEARCH_PARAMETER_KEY is a constant String defined in your VideoActivity, and searchResult is a String containing the actual parameter value.