adb笔记3:Android获取App当前页面的Activity名称

方法1. adb命令获取该页面的名称

adb shell "dumpsys window | grep mCurrentFocus"
adb命令获取比较简单直接(对于获取单个页面比较方便)

adb shell 'dumpsys window'|grep mCurrentFocus

方法2. Android studio 的Layout Inspector获取

打开android studio 连接手机,打开您想查看的App,之后在android studio中点击

Tools > Layout Inspector (用Layout Inspector功能)
————————————————
参考链接:https://blog.csdn.net/github_2011/article/details/102554727

你可能感兴趣的:(adb笔记3:Android获取App当前页面的Activity名称)