将定制的Launcher设置为默认.doc
文本预览下载声明
Android 如何将定制的Launcher成为系统中唯一的Launcher
2011-01-17 11:12
如果你要定制一个Android系统,你想用你自己的Launcher(Home)作主界面来替换Android自己的Home,而且不希望用户安装的Launcher来替换掉你的Launcher.我们可以通过修改Framework来实现这样的功能。
这里以Android2.1的源代码为例来实际说明。
1)首先了解一下Android的启动过程。??Android系统的启动先从Zygote开始启动,然后……(中间的过程就不说了)…..一直到了SystemServer(framework)这个地方,看到这段代码:
? ?? ?/**? ???* This method is called from Zygote to initialize the system. This will cause the native? ???* services (SurfaceFlinger, AudioFlinger, etc..) to be started. After that it will call back? ???* up into init2() to start the Android services.? ???*/? ? native public static void init1(String[] args);
? ? public static void main(String[] args) {? ?? ???if (SamplingProfilerIntegration.isEnabled()) {? ?? ?? ?? ?SamplingProfilerIntegration.start();? ?? ?? ?? ?timer = new Timer();? ?? ?? ?? ?timer.schedule(new TimerTask() {? ?? ?? ?? ?? ? @Override? ?? ?? ?? ?? ? public void run() {? ?? ?? ?? ?? ?? ???SamplingProfilerIntegration.writeSnapshot(“system_server”);? ?? ?? ?? ?? ? }? ?? ?? ?? ?}, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);? ?? ???}
? ?? ???// The system server has to run all of the time, so it needs to be? ?? ???// as efficient as possible with its memory usage.? ?? ???VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
? ?? ???System.loadLibrary(“android_servers”);? ?? ???init1(args);? ? }
? ? public static final void init2() {? ?? ???Log.i(TAG, “Entered the Android system server!”);? ?? ???Thread thr = new ServerThread();? ?? ???thr.setName(“android.server.ServerThread”);? ?? ???thr.start();? ? }}
从SystemServer的main函数开始启动各种服务。首先启动init1,然后启动init2.从上面的注释可以看到:init1这个方法时被Zygote调用来初始化系统的,init1会启动native的服务如SurfaceFlinger,AudioFlinger等等,这些工作做完以后会回调init2来启动Android的service。
这里我们主要来关注init2的过程。init2中启动ServerThread线程,ServerThread中启动了一系列的服务,比如这些:
ActivityManagerServiceEntropyServicePowerManagerServiceTelephonyRegistryPackageManagerServiceAccountManagerServiceBatteryServiceHardwareServiceWatchdogSensorServiceBluetoothServ
显示全部