美文网首页
Android 常用命令

Android 常用命令

作者: gaoqi03 | 来源:发表于2019-12-17 19:40 被阅读0次

    查看当前APP包名

    adb shell "dumpsys window windows | grep -E 'mCurrentFocus|mFocusedApp'" | cut -d'/' -f1 | rev | cut -d' ' -f1 | rev | head -1

    查看当前APP Activity

    adb shell "dumpsys window windows | grep -E 'mCurrentFocus|mFocusedApp'"

    查看当前APP Fragment

    adb shell dumpsys activity `adb shell "dumpsys window windows | grep -E 'mCurrentFocus|mFocusedApp'" | cut -d'/' -f1 | rev | cut -d' ' -f1 | rev | head -1`| grep '#0' | head -1

    adb shell dumpsys window com.xiaomi.account | grep "com.xiaomi.account*" |grep "Window*" | grep -v "mToken*" 

    相关文章

      网友评论

          本文标题:Android 常用命令

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