adb常用命令

Posted 周文凯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb常用命令相关的知识,希望对你有一定的参考价值。

设备相关

  1. 查看设备

    $ adb devices
    List of devices attached
    7N2SQL151L043897	device
    
  2. 重启设备

    $ adb reboot
    
  3. 查看最顶层activity名称

    // Linux
    $ adb shell dumpsys activity | grep "mFocusedActivity"
    // Windows
    $ adb shell dumpsys activity | findstr "mFocusedActivity"
    
  4. 查看所有activity

    adb shell dumpsys activity top | grep ACTIVITY
    

参考

  1. Android adb

随时更新… …

以上是关于adb常用命令的主要内容,如果未能解决你的问题,请参考以下文章

常用的adb命令

adb测试常用命令

超实用的adb与adb shell常用命令汇总

ADB常用命令

Android 常用adb命令

adb shell monkey常用命令