aolphn
aolphn
我貌似没有看到有介绍说可以压缩gif图片还能正常播放的,刚用luban试了一下压缩完就不能播放了
### The language of WCDB > java ### The version of WCDB > 1.0.8 ### The platform of WCDB > Android ### The installation of WCDB > Git clone ###...
FileUtil中很多代码都会直接使用`new StatFs(path)`,StatFs内部的代码: ``` public StatFs(String path) { mStat = doStat(path); } private static StructStatVfs doStat(String path) { try { return Os.statvfs(path); } catch (ErrnoException e) { throw new IllegalArgumentException("Invalid path:...
Thanks
万分感谢
for example,a picture's resolution is 200*8000,the image will be blurry after scaling 3x
``` private static RouteManager sInstance;//这种写法静态变量应该用volatile修饰,不然指令重排序可能导致其他线程获取到错误的单例,可以看一下这里说明:https://my.oschina.net/u/2250599/blog/412827 public static RouteManager getInstance(boolean asyncLoadRoute) { if (null == sInstance) { synchronized (RouteManager.class) { if (null == sInstance) { sInstance = new RouteManager(asyncLoadRoute); } }...
这个开关能搞成false的吗?关于这个标志位true的安全问题:http://www.freebuf.com/articles/terminal/60778.html