views:

284

answers:

1

what are file formats android video player can support in android?

and differentiate the video view and video player in android..

i am looking on the tutorils, videos, forums answer, etc.

anything related to this...

+2  A: 

what are file formats android video player can support in android?

They are listed in the documentation.

and differentiate the video view and video player in android..

There is a widget named VideoView. There is nothing in the Android SDK named "video player". There is a class named MediaPlayer, which can be used with a SurfaceView to play back videos. In fact, all VideoView does is wrap up a MediaPlayer and a SurfaceView.

i am looking on the tutorils, videos, forums answer, etc.

Here are two projects from one of my books demonstrating video playback.

CommonsWare