若无明示源码版本,全文以Android API23为准分析

从何开始

如何解释:我写的Java代码是如何在手机上一直运行着的?

首先,显而易见的,作为一个Java程序,一定有一个程序入口main(String[] args), 那么Android程序的入口main()在哪里呢,我们用 Source Insight查找一下,最终我们在android.app.ActivityThread中找到了它的身影。

让我们来看一下ActivityThread.main()到底干了些啥:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//{@link android.app.ActivityThread}
public static void main(String[] args) {
// ... something for environment & log

Looper.prepareMainLooper();

// init ActivityThread; ActivityManager.attachApplication
// init Instrumentation; ContextImpl.createAppContext
// context.mPackageInfo.makeApplication; application.onCreate
// and so on ...

Looper.loop();
throw new RuntimeException("Main thread loop unexpectedly exited");
}

且先不看程序是如何初始化环境以及是如何从ActivityThread开始一步步启动application的,我们都知道Java程序终有执行完的一刻,那么app是如何保证在手机不爆炸的情况下一直运行不退出的?手痒用Java JFrame、JPanel的做过小游戏的朋友应该就想到了:无限循环刷新!

可是肉眼看过去,这里别说死循环,连个for都没有,怎么肥四?

所幸,我们发现了一组特别的单词 【Looper】(翻译:打环装置)和 【loop】(翻译:循环电影胶片;重复指令),显然Looper应该就是维持程序一直运行的关键。

2021年03月08日 Framework
阅读更多...