摘要:
参考: http://www.blogjava.net/rosen/archive/2010/05/21/321575.html 1,Java进程内存堆分代: 典型的JVM根据generation(代)来进行GC。一个java程序内存堆有下面几个代: young generation (年轻代) t 阅读全文
摘要:
原文: http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.mat.ui.help%2Fgettingstarted%2Fbasictutorial.html Basic Tutorial This tutorial provide 阅读全文
摘要:
原文: http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.mat.ui.help%2Fconcepts%2Fheapdump.html http://help.eclipse.org/mars/index.jsp?topic=%2 阅读全文
摘要:
什么是Dalvik: Dalvik是Google公司自己设计用于Android平台的Java虚拟机。Dalvik虚拟机是Google等厂商合作开发的Android移动设备平台的核心组成部分之一。 Dalvik 经过优化,允许在有限的内存中同时运行多个虚拟机的实例,并且每一个Dalvik 应用作为一个 阅读全文
摘要:
Memory and CPU monitor Android Studio provides a memory and CPU monitor view so you can more easily monitor your app's performance and memory usage to 阅读全文
摘要:
转自: http://www.cnblogs.com/sudawei/p/3527145.html 参考: Android Application生命周期学习 Android中如何查看内存(上) Android OnLowMemory和OnTrimMemory OnLowMemory是Android 阅读全文
摘要:
Investigating Your RAM Usage 1.In this document Interpreting Log Messages 内存分析日志中各消息的含义 Viewing Heap Updates 查看当前内存快照的2种方法 Tracking Allocations 跟踪记录内存 阅读全文
摘要:
Managing Your App's Memory 1.In this document How Android Manages Memory Sharing Memory Allocating and Reclaiming App Memory Restricting App Memory Sw 阅读全文
摘要:
A reference that is cleared when its referent is not strongly reachable and there is memory pressure. In practice, soft references are inefficient for 阅读全文
摘要:
from: http://www.raizlabs.com/dev/2014/04/hunting-your-leaks-memory-management-in-android-part-2-of-2/ HUNTING YOUR LEAKS: MEMORY MANAGEMENT IN ANDROI 阅读全文
摘要:
from : http://www.raizlabs.com/dev/2014/03/wrangling-dalvik-memory-management-in-android-part-1-of-2/ WRANGLING DALVIK: MEMORY MANAGEMENT IN ANDROID ( 阅读全文
摘要:
1.参考 http://stackoverflow.com/questions/28295933/difference-between-build-gradleproject-and-build-gradlemodule 在Gradle Scripts下有两个build.gradle ,如下图中的b 阅读全文
摘要:
真是朱元璋当时说的? 众各为计,云水飘扬。 我何作为,百无所长。 依上自辱,仰天茫茫。 既非可倚,侣影相将。 突朝烟而急进,暮投古寺以趋跄。 仰穷崖崔嵬而倚碧,听猿啼夜月而凄凉。 魂悠悠而觅父母无有,志落魄而侠佯。 西风鹤唳,俄浙沥以飞霜。 身如蓬飘逐风不止,心滚滚乎沸汤。 阅读全文
摘要:
参考: http://www.cnblogs.com/changxiangyi/archive/2012/07/16/2594297.html http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/1214/3772.html 1,MV 阅读全文
摘要:
参考: http://www.cnblogs.com/liuling/p/mvp-pattern-android.html 架构图: 1、View层 这些接口是显示view。具体的view在NewsListFragment中。 --为什么要有个NewView接口?它在哪里使用? --在Present 阅读全文