您的位置 首页 新闻

adb常用操作

# 显示已连接的设备 adb devices # 显示结果如下所示: # List of devices attached # 6e070d91 device # 其中6e070d…

# 显示已连接的设备 adb devices # 显示结果如下所示: # List of devices attached # 6e070d91 device # 其中6e070d91是设备的id,device是设备的状态。 # 设备状态有3种:offline表示设备离线,device表示设备连接正常,no device表示没有设备连接 # 如果有多台手机连接到电脑,则需要用 -s 指定adb调用的手机,如 # adb -s 6e070d91 install helloWorld.apk # 获取手机序列号 adb get-serialno # 获取手机连接的状态即offline、device和no device adb get-state # 在手机状态变成device后执行install helloWorld.apk adb wait-for-device install helloWorld.apk # 安装helloWorld.apk到手机上,如果手机里已经安装该应用,可加 -r 重新安装并保留应用的数据 adb install helloWorld.apk # 卸载包名为com.example.test的应用,可加 -k 在卸载时保留配置和缓存文件 adb uninstall com.example.test # 显示logcat,可使用grep过滤log,如adb logcat | grep debug adb logcat # 复制手机的/sdcard/foo.txt文件到本地并命名为foo.txt adb pull /sdcard/foo.txt foo.txt # 将foo.txt文件复制到手机的/sdcard/文件夹并命名为foo.txt adb push foo.txt /sdcard/foo.txt # 开启adb服务 adb start-server # 结束adb服务 adb kill-server # 进入shell模式,可在手机里执行shell命令 adb shell # 不进入shell模式,直接执行shellCommand指令,如adb shell ls adb shell shellCommand # 启动包名为com.example.test的应用入口activity即com.example.test.Helloworld adb shell am start -n com.example.test/.Helloworld # 强制关闭包名为com.example.test的应用 adb shell am force-stop com.example.test # 杀死包名为com.example.test的应用进程 adb shell am kill com.example.test # 杀死所有的后台进程 adb shell am kill-all # 列出设备上安装的所有应用的包名 # -f 可显示应用对应的文件 # -d 只显示被禁用的应用 # -e 只显示启用的应用 # -s 只显示系统应用 # -3 只显示第三方应用 # -i 显示应用安装的方式 adb shell pm list packages # 列出系统所支持的功能,如蓝牙、相机、定位等 adb shell pm list features # 显示com.example.test的apk路径 adb shell pm path com.example.test # 删除和com.example.test相关的数据 adb shell pm clear com.example.test # 启用应用com.example.test adb shell pm enable com.example.test # 禁用应用com.example.test adb shell pm disable com.example.test # 查看系统默认的安装方式,0 [auto]是系统自动决定安装位置,1 [internal]是安装在系统内部存储空间,2 [external]是安装在外置存储卡上 adb shell pm get-install-location # 录制屏幕并保存为demo.mp4。该功能只能在Android 4.4(API level 19)或更高的版本运行。按Ctrl-C停止录制,否则在3分钟后自动停止录制。可通过–time-limit 30设置录制时间为30秒。 adb shell screenrecord /sdcard/demo.mp4

本文来自网络,不代表Xnewv立场,转载请注明出处:https://xnewv.com/2205.html

为您推荐

联系我们

联系我们

18873343099

在线咨询: QQ交谈

邮箱: [email protected]

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部