一、依赖库
os
二、命令
1.这是查看设备中所有应用包名的最简单方法。只需在命令行中输入以下命令:
adb shell pm list packages
2.打印启动的程序包名
adb shell am monitor回车,然后启动你想要获取包名的那个应用,即可获得
3.查看正在运行的应用的包名
adb shell dumpsys window w |findstr \/ |findstr name=
adb shell dumpsys window windows | findstr "mCurrentFocus"
4.通过ADB启动一个Android应用
adb shell am start -n <package_name>/<package_name>.<activity_name>
eg:adb shell am start -n com.visteon.smartscene/com.visteon.smartscene.ui.SceneActivity
eg:adb shell am start -n com.visteon.smartscene/com.visteon.smartscene.MainActivity
三、python代码
os.system("adb shell am start -n com.visteon.smartscene/com.visteon.smartscene.MainActivity")
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » python:ADB通过包名打开应用
发表评论 取消回复