随笔(二十六)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_27073205/article/details/82418726

1.
The key must be an application-specific resource id.

http://www.cnblogs.com/fengzhblog/archive/2013/07/11/3183832.html
2.
Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK

https://blog.csdn.net/watermusicyes/article/details/44963773
3.项目场景:遇到消息推送轰炸,n多弹窗导致卡死
RxJava 2.0中backpressure(背压)概念的理解

https://blog.csdn.net/jdsjlzx/article/details/52717636

最终实现方案:
singleTop onNewIntent

                if(!mNotificationMessages.isEmpty()) {
                    mNotificationMessages.remove(0);
                }
                if(!mNotificationMessages.isEmpty()){
                    showDialog(context,mNotificationMessages.get(0));
                }else {
                    finish();
                }

4.
Intellij IDEA插件开发入门

https://blog.csdn.net/u012578444/article/details/76221868
5. Plugin “Android Games” was not loaded: required plugin “Android Support” is disabled.
https://blog.csdn.net/u013147860/article/details/68957481
6.MaterialDesign
https://github.com/lightSky/Awesome-MaterialDesign
各种Android UI开源框架

https://blog.csdn.net/m0_37135879/article/details/79159615

7.骚年你的屏幕适配方式该升级了!-今日头条适配方案
https://segmentfault.com/a/1190000016079558
8.
Android Studio 3.0 利用 Android Profiler 测量应用性能

https://juejin.im/post/5b7cbf6f518825430810bcc6
9.
教你快速使用AndroidStudio制作出一张合格.9图片

https://blog.csdn.net/Fredlxy_007/article/details/72600767

https://www.25xt.com/allcode/6370.html

猜你喜欢

转载自blog.csdn.net/qq_27073205/article/details/82418726