i have a problem with the VideoView. I have a videoView and an ImageView, when i try to display a video i set invisible the ImageView and visible the videoView. Also i correctly put the URI to the VideoView but it doesn't show me the video... this is my simple code
videoView = (VideoView) getView().findViewById(R.id.myVideo);
slidingimage = (ImageView) getView().findViewById(R.id.imageView2);
slidingimage.setVisibility(View.INVISIBLE);
videoView.setVisibility(View.VISIBLE);
Uri vidUri = Uri.parse(singletonMedia.listaMedia.get(currentMedia).url);
//Log.w(null, "URI del video: "+vidUri);
videoView.setVideoURI(vidUri);
videoView.start();
Log.w(null, "Media corrente: " + currentMedia+ " Questo e' un video con uri:"+vidUri);
Can onyone help me pease, thanks in advance
Add this Right before videoView.start():