2019独角兽企业重金招聘Python工程师标准>>>
显示包名为com.tracy.testlab下的所有进程
显示uid 为u0_a355下的所有进程
adb shell
shell@a5ltechn:/ $ ps|grep com.tracy.testlab
u0_a355 11026 242 926276 43340 ffffffff 00000000 S com.tracy.testlab
shell@a5ltechn:/ $ ps|grep -u u0_a355
u0_a355 11026 242 926276 43340 ffffffff 00000000 S com.tracy.testlab
获取当前运行的activity
shell@a5ltechn:/ $ dumpsys activity top|grep ACTIVITY
获取更多详细的信息,包括 : $ dumpsys activity activities
发现一些app会把webview单开一个进程,比如微信、美团,有待研究他们是怎么做的
2017.5 补答上面的问题
https://my.oschina.net/u/268088/blog/894103
转的http://blog.csdn.net/yes_wentao/article/details/50651399 的文章