안드로이드

service

먕고 2014. 1. 16. 21:18

* 서비스 시작

Intent intent = new Intent(ConfigActivity.this, ScreenService.class);

startService(intent);


* 서비스 종료

Intent intent = new Intent(ConfigActivity.this, ScreenService.class);

stopService(intent);


서비스 동작중인지 확인

http://whdghks913.tistory.com/326