假设App包名为com.something,使用多进程的页面标记进程名为":test",使用
adb shell pidof com.something
只能查看到主进程的pid,想要查看com.something:test,则必须写全
adb shell pidof com.something:test
而使用
adb shell "ps|grep com.something" // linux、macos、windows
adb shell ps|findstr com.something // windows
即可查看到两个进程的基本信息
当然,前提是使用多进程时指定的进程名是以":xxx"或”App包名.xxx“,因为此命令是在adb shell ps的基础上进行pname的过滤,如果子进程使用的name是其他规则,只能单独查看。
网友评论