0%

Android性能相关

  • 内存优化

  • 性能监控

  • ANR问题


内存优化

常见问题

内存泄露

原理

打算释放的对象被其他对象持有强引用,无法被回收,导致内存泄露

场景

  1. Handler内存泄露
  2. 非静态内部类 & 匿名内部类 会持有外部类的引用,因此想要回收外部类的资源需要先回收内部类
  3. webview创建在独立进程,合适时机销毁进程来释放内存
  4. 资源文件如文件、图片等在退出Activity之前关闭资源对象
  5. 广播有注册无反注册
  6. 对象存放到集合里,集合持有了对象引用,导致对象无法被回收
  7. bitmap对象没有调用recycle()对象释放内存

内存溢出[over of memory]

内存使用量超出了虚拟机分配的最大值

内存抖动

原理

参考先来先服务的抖动现象
频繁分配和回收内存,锯齿状内存变化

场景

  1. 循环创建大内存对象
  2. 自定义view的onDraw方法因为创建被频繁调用

引用问题

Java四大引用问题

强引用

只要对象存在强引用,就不会被回收

1
UKFC ukfc = new UKFC();

软引用

SoftReference关键字,在内存空间不够时候会被GC回收

1
2
String str = new String("UKFC");
SoftReference<String> soft = new SoftReference<String>(str);

弱引用

WeakReference关键字,只要发生GC就会被回收

1
2
UKFC ukfc = new UKFC();
WeakReference<UKFC> wr = new WeakReference<UKFC>(ukfc);

虚引用

形同虚设,任何时候都有可能被GC回收

性能监控

top

监控系统整体和各个进程的CPU使用率

ps

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
usage: ps [-AadefLlnwZ] [-gG GROUP,] [-k FIELD,] [-o FIELD,] [-p PID,] [-t TTY,] [-uU USER,]

List processes.

Which processes to show (selections may be comma separated lists):

-A All processes
-a Processes with terminals that aren't session leaders
-d All processes that aren't session leaders
-e Same as -A
-g Belonging to GROUPs
-G Belonging to real GROUPs (before sgid)
-p PIDs (--pid)
-P Parent PIDs (--ppid)
-s In session IDs
-t Attached to selected TTYs
-T Show threads
-u Owned by USERs
-U Owned by real USERs (before suid)

Output modifiers:

-k Sort FIELDs in +increasing or -decreasting order (--sort)
-M Measure field widths (expanding as necessary)
-n Show numeric USER and GROUP
-w Wide output (don't truncate fields)

Which FIELDs to show. (Default = -o PID,TTY,TIME,CMD)

-f Full listing (-o USER:12=UID,PID,PPID,C,STIME,TTY,TIME,ARGS=CMD)
-l Long listing (-o F,S,UID,PID,PPID,C,PRI,NI,ADDR,SZ,WCHAN,TTY,TIME,CMD)
-o Output FIELDs instead of defaults, each with optional :size and =title
-O Add FIELDS to defaults
-Z Include LABEL

Command line -o fields:

ARGS CMDLINE minus initial path CMD Command (thread) name (stat[2])
CMDLINE Command line (argv[]) COMM Command filename (/proc/$PID/exe)
COMMAND Command file (/proc/$PID/exe) NAME Process name (argv[0] of $PID)

Process attribute -o FIELDs:

ADDR Instruction pointer BIT Is this process 32 or 64 bits
CPU Which processor running on ETIME Elapsed time since PID start
F Flags (1=FORKNOEXEC 4=SUPERPRIV) GID Group id
GROUP Group name LABEL Security label
MAJFL Major page faults MINFL Minor page faults
NI Niceness (lower is faster)
PCPU Percentage of CPU time used PCY Android scheduling policy
PGID Process Group ID
PID Process ID PPID Parent Process ID
PRI Priority (higher is faster) PSR Processor last executed on
RGID Real (before sgid) group ID RGROUP Real (before sgid) group name
RSS Resident Set Size (pages in use) RTPRIO Realtime priority
RUID Real (before suid) user ID RUSER Real (before suid) user name
S Process state:
R (running) S (sleeping) D (device I/O) T (stopped) t (traced)
Z (zombie) X (deader) x (dead) K (wakekill) W (waking)
SCHED Scheduling policy (0=other, 1=fifo, 2=rr, 3=batch, 4=iso, 5=idle)
STAT Process state (S) plus:
< high priority N low priority L locked memory
s session leader + foreground l multithreaded
STIME Start time of process in hh:mm (size :19 shows yyyy-mm-dd hh:mm:ss)
SZ Memory Size (4k pages needed to completely swap out process)
TCNT Thread count TID Thread ID
TIME CPU time consumed TTY Controlling terminal
UID User id USER User name
VSZ Virtual memory size (1k units) %VSZ VSZ as % of physical memory
WCHAN What are we waiting in kernel for

dumpsys cpuinfo

工具指令。可以对cpu使用情况做切片

读取/proc/stat文件

前面三种方式都有的缺陷就是无法监控单个核的情况,因此这是现在最合理的方案

Application not responsing[ANR]

  • 应用无响应

成因

超时

Android监控程序的响应,超时time

  • Activity无响应超过5s
  • BroadcastReceiver 前台10s内(后台60s内)未完成设定操作
  • Service 前台20s内(后台200s内)未完成设定操作

死锁

IO阻塞

主线程操作耗时、错误操作

处理

因为成因基本就是资源占用率太高、操作太耗时,亦或是逻辑问题导致崩溃,所以排除掉逻辑问题以后主要就是看怎么优化耗时耗资源问题了

  • 将耗时操作放在子线程
  • 让用户感知耗时操作进度

Tool

  • CPU Profiler

  • data/anr/traces.txt <– FileObserver | ANR-WatchDog[root]

  • systrace

  • Perfetto

  • SIGQUIT

  • PerfDog

参考文章: