美文网首页
Android中使用adb命令获取当前打开app的包名

Android中使用adb命令获取当前打开app的包名

作者: 程序员小华 | 来源:发表于2019-07-19 09:22 被阅读0次

android开发中,我们可以使用adb命令来获取当前打开应用的包名,命令如下:

adb shell dumpsys window | findstr mCurrentFocus

手机连接上电脑,并且在手机上打开微信,然后再cmd命令行窗口运行以上命令:

D:\>adb shell dumpsys window | findstr mCurrentFocus
  mCurrentFocus=Window{1eb9031 u0 com.tencent.mm/com.tencent.mm.ui.LauncherUI}

D:\>

在上面的输出结果中,com.tencent.mm是包名,com.tencent.mm.ui.LauncherUI是当前打开的activity类名

相关文章

网友评论

      本文标题:Android中使用adb命令获取当前打开app的包名

      本文链接:https://www.haomeiwen.com/subject/acodlctx.html