I have a .gif file inside the assets folder like this assets/Files/android.gif. when I try to open the file it throws an exception at the second line
AssetManager mngr=getAssets();
InputStream is2=mngr.open("Files/android.gif");
so Is it that I'm trying to open an image file despite that the same code works if I try to open a text file ? what can be the problem here.