I have a VideoView which I want to use to play a video. The code below
works.

        VideoView m_videoView;
        String videoUrl = "website url deleted";
        Uri video = Uri.parse(videoUrl);
        m_videoView.setVideoURI(video);
        m_videoView.requestFocus();
        m_videoView.start();

However I see a black flash just before and after the movie clip. The
flash in itself isn't a big problem, but the blackness of it is. The
background is white, so if the flash is white, or if it disappears it
will be okay.

Thoughts?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to