Android에서 서비스 시작


115

특정 활동이 시작되면 서비스를 호출하고 싶습니다. 따라서 다음은 서비스 클래스입니다.

public class UpdaterServiceManager extends Service {

    private final int UPDATE_INTERVAL = 60 * 1000;
    private Timer timer = new Timer();
    private static final int NOTIFICATION_EX = 1;
    private NotificationManager notificationManager;

    public UpdaterServiceManager() {}

    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public void onCreate() {
        // Code to execute when the service is first created
    }

    @Override
    public void onDestroy() {
        if (timer != null) {
            timer.cancel();
        }
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startid) {
        notificationManager = (NotificationManager) 
                getSystemService(Context.NOTIFICATION_SERVICE);
        int icon = android.R.drawable.stat_notify_sync;
        CharSequence tickerText = "Hello";
        long when = System.currentTimeMillis();
        Notification notification = new Notification(icon, tickerText, when);
        Context context = getApplicationContext();
        CharSequence contentTitle = "My notification";
        CharSequence contentText = "Hello World!";
        Intent notificationIntent = new Intent(this, Main.class);
        PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                notificationIntent, 0);
        notification.setLatestEventInfo(context, contentTitle, contentText,
                contentIntent);
        notificationManager.notify(NOTIFICATION_EX, notification);
        Toast.makeText(this, "Started!", Toast.LENGTH_LONG);
        timer.scheduleAtFixedRate(new TimerTask() {

            @Override
            public void run() {
                // Check if there are updates here and notify if true
            }
        }, 0, UPDATE_INTERVAL);
        return START_STICKY;
    }

    private void stopService() {
        if (timer != null) timer.cancel();
    }
}

그리고 내가 그것을 부르는 방법은 다음과 같습니다.

Intent serviceIntent = new Intent();
serviceIntent.setAction("cidadaos.cidade.data.UpdaterServiceManager");
startService(serviceIntent);

문제는 아무 일도 일어나지 않는다는 것입니다. 위의 코드 블록은 활동의 onCreate. 이미 디버깅했으며 예외가 발생하지 않습니다.

어떤 생각?


1
타이머주의-AFAIK는 서비스가 종료되어 리소스를 확보하기 위해 서비스가 다시 시작될 때이 타이머가 다시 시작되지 않습니다. 맞아요 START_STICKY. 서비스를 다시 시작하지만 onCreate 만 호출되고 타이머 var가 다시 초기화되지 않습니다. 당신은 놀 수있는 START_REDELIVER_INTENT이 문제를 해결하기 위해 알람 서비스 또는 API (21) 작업 스케줄러.
Georg

잊어 버린 경우 <service android:name="your.package.name.here.ServiceClass" />응용 프로그램 태그 내에서 사용하여 Android 매니페스트에 서비스를 등록했는지 확인하십시오 .
야벳 Ongeri - inkalimeva

답변:


278

아마도 매니페스트에 서비스가 없거나 <intent-filter>작업과 일치 하는 서비스가 없을 것 입니다. LogCat ( adb logcatEclipse에서, DDMS 또는 DDMS Perspective 를 통해)를 조사 하면 도움이 될 수있는 몇 가지 경고가 표시됩니다.

아마도 다음을 통해 서비스를 시작해야합니다.

startService(new Intent(this, UpdaterServiceManager.class));

1
어떻게 디버깅 할 수 있습니까? 내 서비스를 호출하지 않았고, 내 debugg는 아무것도 표시하지 않았습니다.
delive

모든 곳에 Log.e 태그 추가 : 서비스를 시작하기 전에 서비스 인 텐트의 결과가 이동하는 서비스 클래스 내부 (onCreate, onDestroy, any 및 all 메소드).
Zoe

Android SDK 26+에서는 내 앱에서 작동하지만 Android SDK 25 이하에서는 작동하지 않습니다. 해결책이 있습니까?
Mahidul Islam

@MahidulIslam : 문제와 증상을 더 자세히 설명 하는 최소한의 재현 가능한 예제를 제공 할 수있는 별도의 Stack Overflow 질문을하는 것이 좋습니다 .
CommonsWare

- : 나는 이미 질문이의 질문 @CommonsWare stackoverflow.com/questions/49232627/...
Mahidul 이슬람

81
startService(new Intent(this, MyService.class));

이 줄을 쓰는 것만으로는 충분하지 않았습니다. 서비스가 여전히 작동하지 않았습니다. 매니페스트에 서비스를 등록한 후에야 모든 것이 작동했습니다.

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >

    ...

    <service
        android:name=".MyService"
        android:label="My Service" >
    </service>
</application>

1
가장 좋은 예는 모든 것을 관련 서비스를 배울 안드로이드 coderzpassion.com/implement-service-android 및 늦어서 죄송합니다
재짓 싱을

55

서비스 시작을 위한 Java 코드 :

활동 에서 서비스 시작 :

startService(new Intent(MyActivity.this, MyService.class));

Fragment 에서 서비스 시작 :

getActivity().startService(new Intent(getActivity(), MyService.class));

MyService.java :

import android.app.Service;
import android.content.Intent;
import android.os.Handler;
import android.os.IBinder;
import android.util.Log;

public class MyService extends Service {

    private static String TAG = "MyService";
    private Handler handler;
    private Runnable runnable;
    private final int runTime = 5000;

    @Override
    public void onCreate() {
        super.onCreate();
        Log.i(TAG, "onCreate");

        handler = new Handler();
        runnable = new Runnable() {
            @Override
            public void run() {

                handler.postDelayed(runnable, runTime);
            }
        };
        handler.post(runnable);
    }

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public void onDestroy() {
        if (handler != null) {
            handler.removeCallbacks(runnable);
        }
        super.onDestroy();
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        return START_STICKY;
    }

    @SuppressWarnings("deprecation")
    @Override
    public void onStart(Intent intent, int startId) {
        super.onStart(intent, startId);
        Log.i(TAG, "onStart");
    }

}

이 서비스를 프로젝트의 매니페스트 파일에 정의합니다.

매니페스트 파일에 아래 태그 추가 :

<service android:enabled="true" android:name="com.my.packagename.MyService" />

끝난


7
활동과 서비스를 동일한 패키지에 남겨두면 성능이 얼마나 향상됩니까? 전에는 들어 본 적이 없습니다.
OneWorld 2014 년

실행 속도가 아니라 매우 모호한 느슨한 의미의 성능을 의미했을 수 있습니다.
Anubian 멍청한 놈

3

나는 그것을 더 역동적으로 만들고 싶다.

Class<?> serviceMonitor = MyService.class; 


private void startMyService() { context.startService(new Intent(context, serviceMonitor)); }
private void stopMyService()  { context.stopService(new Intent(context, serviceMonitor));  }

매니페스트를 잊지 마세요

<service android:enabled="true" android:name=".MyService.class" />

1
Intent serviceIntent = new Intent(this,YourActivity.class);

startService(serviceIntent);

매니페스트에 서비스 추가

<service android:enabled="true" android:name="YourActivity.class" />

oreo에서 서비스를 실행하고 지상 서비스에 더 많은 장치를 사용하고 사용자에게 알림을 표시합니다.

또는 백그라운드 참조 http://stackoverflow.com/questions/tagged/google-play-services 에서 위치 업데이트를 위해 지오 펜싱 서비스를 사용 하십시오.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.