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सेवा को फिर से शुरू करेंगे, लेकिन उसके बाद केवल ऑनक्रीट कहा जाता है और टाइमर संस्करण को फिर से शुरू नहीं किया जाएगा। इसे ठीक करने के लिए आप START_REDELIVER_INTENTअलार्म सेवा या एपीआई 21 जॉब शेड्यूलर के साथ खेल सकते हैं ।
जॉर्ज

यदि आप भूल गए हैं, तो सुनिश्चित करें कि आपने <service android:name="your.package.name.here.ServiceClass" />एप्लिकेशन टैग के उपयोग से Android मेनिफेस्ट में सेवा पंजीकृत की है ।
जफथ ओन्गेरी - इंकलीमेव

जवाबों:


278

संभवत: आपके पास आपके मैनिफ़ेस्ट में सेवा नहीं है, या इसमें ऐसा नहीं है जो <intent-filter>आपकी कार्रवाई से मेल खाता हो। लॉगकट की जांच ( adb logcatग्रहण के माध्यम से , डीडीएमएस, या डीडीएमएस परिप्रेक्ष्य में) कुछ चेतावनियों को चालू करना चाहिए जो मदद कर सकती हैं।

अधिक संभावना है, आपको सेवा शुरू करनी चाहिए:

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

1
आप कैसे डीबग कर सकते हैं? मेरी सेवा कभी नहीं कहा जाता है, मेरी debugg नहीं कुछ भी नहीं दिखा
delive

हर जगह Log.e टैग का एक शिटॉन जोड़ें: इससे पहले कि आप सेवा लॉन्च करें, सेवा के इरादे का परिणाम, सेवा वर्ग के अंदर जहां यह यात्रा करेगा (onCreate, onDestroy, किसी भी और सभी तरीकों)।
झो

यह एंड्रॉइड sdk 26+ पर मेरे ऐप्स के लिए काम करता है, लेकिन एंड्रॉइड एसडीके 25 या उससे कम पर खुराक नहीं। इसका कोई हल है?
माहिदुल इस्लाम

@MahidulIslam: मेरा सुझाव है कि आप एक अलग स्टैक ओवरफ्लो प्रश्न पूछें, जहाँ आप अपनी समस्या और लक्षणों को अधिक विस्तार से बताते हुए एक न्यूनतम प्रतिलिपि प्रस्तुत करने योग्य उदाहरण प्रदान कर सकते हैं ।
कॉमंसवेयर

@CommonsWare मैंने पहले ही एक प्रश्न पूछा था और वह है: - stackoverflow.com/questions/49232627/…
महिदुल इस्लाम

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
Android coderzpassion.com/implement-service-android में सेवाओं के बारे में सब कुछ जानने के लिए सबसे अच्छा उदाहरण है और देर से आने के लिए खेद है
जगजीत सिंह

55

सेवा शुरू करने के लिए जावा कोड :

गतिविधि से सेवा शुरू करें :

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
जब मैं एक ही पैकेज में गतिविधियों और सेवाओं को छोड़ता हूं तो प्रदर्शन में कितना सुधार होता है? ऐसा पहले कभी नहीं सुना।
वनवर्ल्ड

शायद उनका मतलब बहुत अस्पष्ट ढीले अर्थों में प्रदर्शन था, रन गति के बारे में नहीं?
अनुबिन नोब

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

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.