본문 바로가기

에몽이

서비스가 실행중인지 확인하는 메소드 본문

android

서비스가 실행중인지 확인하는 메소드

ian_hodge 2017. 1. 15. 16:25


 

서비스가 실행중인지 알아야 할때가 있습니다

예제소스를 찾았고, 약간 수정해서 올려드립니다~


1
2
3
4
5
6
7
8
9
public boolean isServiceRunningCheck() {
        ActivityManager manager = (ActivityManager) this.getSystemService(Activity.ACTIVITY_SERVICE);
        for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
            if ("ServiceName".equals(service.service.getClassName())) {
                return true;
            }
        }
        return false;
  }


ServiceName에 검사하기 윈하는 서비스 이름을 적어주면 됩니다

package이름+서비스 이름

예를 들면 com.example.service.myservice

출처 : <a href="http://darkcher.tistory.com/184">http://darkcher.tistory.com/184</a>, 본인 수정



출처: http://itmir.tistory.com/326 [미르의 IT 정복기]

'android' 카테고리의 다른 글

글라이드 bitmap으로 저장  (0) 2017.01.15
글라이드 사용법  (0) 2017.01.15
httpconnect 옵션들  (0) 2017.01.12
라이브러리  (0) 2017.01.12
이미지 서버에 올리기 php 사용  (1) 2017.01.12
Comments