1. 程式人生 > >隨筆(二十六)

隨筆(二十六)

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