tags:

views:

74

answers:

3

Does android 1.5 or 1.6 support android.media.MediaFile ?

+2  A: 

You should take a look to the API. On top of nearly every class there's a version info, from which version it is supported ;-)

poeschlorn
+1  A: 

There is no class android.media.MediaFile in the sdk. android.media

The class is definitely part of the Android os but it must be internal so you should not use it.

BrennaSoft
However, nothing prevents you from copying that class in your code, with another package - and then use the modified class in your projects. Just make sure to publish any changes you may be making to the class, in compliance with the Apache license.
jhominal
A: 

http://developer.android.com/search.html#q=mediafile&t=0

Rpond, I think, is right on this one ;)

Jon