Guest User

Untitled

a guest
May 16th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. How to stop android service from a adb
  2. am startservice com.xxx/.service.XXXService
  3.  
  4. public void onCreate() {
  5. super.onCreate();
  6. stopService(new Intent("<ActionIDofServiceToBeStopped>"));
  7. stopSelf();
  8. }
  9.  
  10. am startservice '<IDofStopperService>'
Advertisement
Add Comment
Please, Sign In to add comment