赞
踩
android开发中,我们可以使用adb命令来获取当前打开应用的包名,命令如下:
adb shell dumpsys window | findstr mCurrentFocus
1
手机连接上电脑,并且在手机上打开微信,然后再cmd命令行窗口运行以上命令:
D:\>adb shell dumpsys window | findstr mCurrentFocus
mCurrentFocus=Window{1eb9031 u0 com.tencent.mm/com.tencent.mm.ui.LauncherUI}
在上面的输出结果中,com.tencent.mm是包名,com.tencent.mm.ui.LauncherUI是当前打开的activity类名
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。