Introduction
adb is the sdk tool to manage the state of emulator or powerd device.
start & stop are tools under /system/bin (system.img) . It can be called by "adb shell <command>"
reboot is one parameter supported by adb which can be used directly by "adb reboot"
the officially description for start, stop, reboot is
- start : Starts (restarts) an emulator/device instance.
- stop : Stops execution of an emulator/device instance.
- reboot : reboots the devices
What's the difference between them ?
Let's start from checking the process list of device:

from the ps list , we

本文介绍了adb工具中start、stop和reboot命令的用途及区别。通过分析设备进程列表,揭示了start如何启动zygote进程及Android框架,stop如何终止由zygote创建的所有进程,以及它们与reboot命令重启Linux内核的区别。在Android框架开发中,start和stop命令特别有用,允许开发者停止当前运行的框架,更新APK并重新启动新框架。
最低0.47元/天 解锁文章

1109

被折叠的 条评论
为什么被折叠?



