What are the file formats that Android VideoPlayer support?
And the differences between the VideoView and VideoPlayer in Android.
I am looking for on tutorials, videos, forums answers, etc.
Anything related to this…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
They are listed in the documentation.
There is a widget named
VideoView. There is nothing in the Android SDK named “video player”. There is a class namedMediaPlayer, which can be used with aSurfaceViewto play back videos. In fact, all VideoView does is wrap up aMediaPlayerand aSurfaceView.Here are two projects from one of my books demonstrating video playback.