Пожалуйста, используйте putExtra
метод в этом Activity
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Object o = this.getListAdapter().getItem(position);
String videouri= o.toString();
Intent in = new Intent(getApplicationContext(), VideoExamplesActivity.class);
in.putExtra(KEY_NAME, videouri);
startActivity(in);
Toast.makeText(this, "You have chosen the videouri: " + " " + videouri, Toast.LENGTH_LONG).show();
}