KANGOD

Results 8 comments of KANGOD

When things came to dex version 038, someone manually edited classes.dex, changed 038 to 037, finally got a jar. That doesn't work for dex version 039.

可以使用一个 ImageLoader 接口,由开发者实现其中的方法,选择图片库。这应该是最容易想到的方法了,或许还有更好的分离方法。

@linchuche 开一个 fork 提交预览功能吧😂 或者直接给此项目维护者提交 PR?

会不会是图片太大了。Picasso 2.5.x 有 bug,我在魅蓝上测试也是大图无法加载,换成 2.4.0 或者 2.6.0-SNAPSHOT 就好了。

An oh-my-zsh startup profile timestamp is strongly needed, while this PR has been inactive for 2 years. Hope the author would schedule this feature in future development. And thanks ddidier,...

Android Studio (or IntelliJ)'s CtrlAltL formatter supports similar grammar to ignore a code block, ref https://www.jetbrains.com/help/idea/reformat-and-rearrange-code.html#exclude_part_of_code // @formatter:off blahblah // @formatter:on Of course ``` // linter:disable[:OptionalCheckNames...] // linter:enable[:OptionalCheckNames...] ``` is...

_Sogou Pinyin Method_, the most popular input method in China, has released [their Linux version](https://pinyin.sogou.com/linux/?r=pinyin) by deb package, which is based on fcitx. So I prefer a fcitx fix for...

PasswordType 只是用来 switch case,每个枚举中只有名字,没有其他字段,确实使用 @IntDef 更好。 BTY,在楼主提到的链接里,关于这段文档: > Enums often require more than twice as much memory as static constants. You should **_strictly_** avoid using enums on Android. 前几天我看到了一些相关的讨论:[Java 枚举会比静态常量更消耗内存吗?...