Imageview Not Display (android)
My ImageView is not displaying anything and I have no idea why. The file it is using is located in the each drawable folder and is a .tiff file. @Override public View onCreateView
Solution 1:
Looks like .tiff is not a supported media format: http://developer.android.com/guide/appendix/media-formats.html
You're probably going to need to convert those to .png or one of the other core formats if you want to just drop it into the drawables folders.
Post a Comment for "Imageview Not Display (android)"