1. adb shell kill [PID]       //杀死进程  
  2. adb 命令查看程序进程方便简洁高效  
  3. adb shell ps       //查看所有进程列表,Process Status  
  4. adb shell ps|grep <package_name>    //查看package_name程序进程  
  5. adb shell ps -x [PID]      //查看PID进程状态  
  6. adb shell top|grep <package_name> //实时监听程序进程的变化  
  7.   
  8. eg:  
  9. adb shell ps -x 13699  
  10. USER           PID    PPID    VSIZE     RSS     WCHAN      PC               NAME  
  11. u0_a94    13699 1734  1653292 28404   ffffffff    00000000 S com.polysaas.mdm (u:6, s:6) 

相关文章:

  • 2021-06-08
  • 2021-06-14
  • 2022-02-08
  • 2021-11-17
猜你喜欢
  • 2021-05-15
  • 2022-12-23
  • 2021-12-03
  • 2022-12-23
  • 2021-10-29
  • 2021-12-26
  • 2021-11-18
相关资源
相似解决方案