adb日常使用命令

重启电脑adb服务
adb start-server和adb kill-server

mac中uiautoviewer的位置
android-sdk→tools→bin→uiautomatorviewer.bat

adb查看本机abi类型
adb shell getprop ro.product.cpu.abi

github 比较好的adb教程:
https://github.com/mzlogin/awesome-adb

adb进行debug的时候报错:端口unavaialable不可用
adb usb

adb bugreport 查看ANR日志

Android studio也可以查看相应ANR日志

adb日常使用命令_第1张图片

adb查看当前界面显示的activity
adb shell dumpsys activity top | grep ACTIVITY

adb查看当前界面View布局层级:
adb shell dumpsys activity top

dump出来以后查看View Hierarchy:这一个章节即可。

你可能感兴趣的:(adb)