Category Archives: Android

Android中如何使用Glide实现centerInside

用过Glide的都知道,Glide中没有像Picasso中一样的centerInside函数,也就是长或者宽恰好撑满imageview并且比例不变。

如何实现呢,可以参考作者给出的方案:https://github.com/bumptech/glide/issues/591

小结一下,需要同时满足2个条件:

1、ImageView设置为centerInside(或者如果你允许失真要撑满宽度或者高度的的话setAdjustViewBounds也行)

2、在request最后[......]

继续阅读

Android部分版本ListView点击Cell时,pressed事件下发给了子元素

如果子元素恰好有 pressed的selector,会导致跟着一起联动,比较不美观。

解决方法:在出问题子元素的所有layout父容器上,加上clickable=true

参考资料:

http://stackoverflow.com/questions/11474247/list-item-click-triggering-child-views-selector

http://stackoverflow.com/questions/2607698/click-in-a-[......]

继续阅读

[转]安卓App热补丁动态修复技术介绍

转载自:https://zhuanlan.zhihu.com/p/20308548
作者:MagiLu
链接:https://zhuanlan.zhihu.com/p/20308548
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

作者:johnczchen

出品:QQ空间终端开发团队

原文发布于QQ空间终端开发团队的官方公众号,任何形式的转载之前必须与本人联系。
1.背景
当一个App发布之后,突然发现了一个严重bug需要进行紧[......]

继续阅读