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>
相关推荐
Yang-Never2 天前
ADB->ADB宏控开关控制
adb
LKID体3 天前
mysql的my.cnf配置文件参数说明
数据库·mysql·adb
液态不合群3 天前
Mysql篇-语句执行计划详解(explain)
android·mysql·adb
无名前端小白4 天前
常用Adb 命令
adb
C_eeking4 天前
Ubuntu23.10下解决C语言调用mysql.h问题
c语言·mysql·adb
木古古184 天前
Ubuntu22.04 安装mysql8 无法修改端口及配置的问题 坑啊~~~~
adb
AlbertS4 天前
Windows下使用adb实现在模拟器中ping
android·windows·adb·ping·模拟器
冷白白5 天前
【MySQL】函数
android·数据库·mysql·adb
GOTXX6 天前
【MySQL】ubantu 系统 MySQL的安装与免密码登录的配置
linux·数据库·mysql·adb·ubantu
找藉口是失败者的习惯6 天前
Android adb 指令大全
android·adb