I am using Koush/Ion library to load gif from internet into imageview but I cannot resize the gifs aspectly, upon calling resize function, gif becomes still
so my question is, is there any way I can resize gif aspectly in android ?
here's my calculation to get aspect height and width of image if that helps
final int newWidth = deviceWidth;
final int newHeight = (int) ((int) newWidth * (imageHeight / imageWidth));