adb命令--之查看进程及Kill进程

  1. http://blog.csdn.net/yuerliang/article/details/46864391



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

你可能感兴趣的:(android)