首页 > 代码库 > android--线程

android--线程

进程优先级

Foreground Process:前台进程,用户可见,被遮挡,虽然可见,但是不属于前台进程;

Background Process:后台进程,用户不可见,进程包含service,重要性高,也存在空进程,不做任何事情。

 

先立个大纲,明天写吧(2017年1月11日20:19:49)

线程调度

 

thread runnable

AsyncTask

HandlerThread

ThreadPoolExecutor

IntentService

 

android--线程