Skip to content

1.0.8

Compare
Choose a tag to compare
@LuckyJayce LuckyJayce released this 27 Mar 05:27
· 11 commits to master since this release

1.添加双击事件的拦截处理
2.在加载前加个非空判断避免多次加载图片
3.修复 int s = (int) Math.sqrt(1.0f * imageWidth * imageHeight / (screenWidth / 2) / (screenHeight / 2));
改为 int s = Math.ceil(Math.sqrt(1.0f * imageWidth * imageHeight / (screenWidth / 2) / (screenHeight / 2))); 向上取整