tags:

views:

40

answers:

1

How to find what service running on background on Android? like input method service, .... Using adb or terminal on android device ? Could I use "top" or "ps" command?

Maybe I have to ask in another way? Does the service be presented as one "process", then we can use "ps" or "top" command to find it?

+1  A: 

If you are running the emulator or have a connected device, you can launch adb with 'adb shell' from the command line and you can run all those linux binaries like top and ps.

BrennaSoft