VideoView videoView = (VideoView) findViewById(R.id.videoView1);
MediaController mediaController = new MediaController(this);
mediaController.setAnchorView(videoView);
Uri video = Uri.parse("http://www.ustream.tv/channel/5474055");
videoView.setMediaController(mediaController);
videoView.setVideoURI(video);
videoView.start();
Good if anyone has any tips. Detail I do not want to have flash download and install. So gave more, wanted something native or without the need to download something. Well I'll leave a print error when I try to load the url in android 2.3 the same url loads all normal android 4.0 up.