adb获取包名和界面名

adb获取包名和界面名

  • mac
    • adb shell dumpsys window windows | grep mFocusedApp
  • windows
    • adb shell dumpsys window windows | findstr mFocusedApp

这个是在当前手机打开哪个界面获取的就是哪个界面的包名与界面

注意第一次连接时会有提示,需要连接两次才可以

复制代码
C:\Users\i5ba0>adb shell dumpsys window windows | findstr mFocusedApp
adb server version (31) doesn't match this client (41); killing...
* daemon started successfully
adb.exe: device offline


C:\Users\i5ba0>adb shell dumpsys window windows | findstr mFocusedApp
  mFocusedApp=AppWindowToken{25d14d77 token=Token{27267376 ActivityRecord{1ee68611 u0 com.android.launcher3/.Launcher t1}}}

C:\Users\i5ba0>

当我们打开设置时,包名与界面名变成了com.android.settings/.Settings t2

复制代码
C:\Users\i5ba0>adb shell dumpsys window windows | findstr mFocusedApp
  mFocusedApp=AppWindowToken{3eede788 token=Token{3525d72b ActivityRecord{28fd037a u0 com.android.settings/.Settings t2}}}

C:\Users\i5ba0>
相关推荐
fengye2071612 天前
板凳-------Mysql cookbook学习 (十)
学习·mysql·adb
进击的CJR2 天前
MySQL 8.0 OCP 英文题库解析(十)
mysql·adb·开闭原则
VirusVIP3 天前
解决:如何在Windows adb使用dmesg | grep检查内核日志
linux·adb
睡觉待开机3 天前
4. 数据类型
android·adb
进击的CJR3 天前
MySQL 8.0 OCP 英文题库解析(十一)
mysql·adb·开闭原则
___波子 Pro Max.4 天前
ADB推送文件到指定路径解析
adb
湿物男5 天前
mysql核心知识点
数据库·mysql·adb
fengye2071616 天前
板凳-------Mysql cookbook学习 (九--2)
学习·mysql·adb
快去睡觉~7 天前
MySQL之数据库的内嵌函数和联合查询
数据库·mysql·adb
find_element_by_id7 天前
adb 常用命令笔记
笔记·adb