MMAPI Problem
I have used MMAPI and successfully added an animated gif on form and Canvas. It is working fine on WTK 2.5 Emulator.
But now the problem is that it is not working on Mobile. I have tried it on Nokia N91 and Sony Ericson 750i. but i both cases it does not worked.
Can any one tell me why?
[308 byte] By [
Atiqea] at [2007-11-27 3:55:35]

# 1
You must verify the device's supported format .
public static boolean isFormatSupported(String contentType)
{
String[] contentTypes = Manager.getSupportedContentTypes(null);
int len = contentTypes.length;
for (int i = 0; i < len; i++)
{
if (contentTypes.equals(contentType)) return true;
}
return false;
}