1.0.8
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))); 向上取整