เริ่มบริการใน 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บริการ Alarm หรือ API 21 Job Scheduler เพื่อแก้ไขปัญหานี้
เฟรด

ในกรณีที่คุณลืมตรวจสอบให้แน่ใจว่าคุณได้ลงทะเบียนบริการในรายการ Android โดยใช้<service android:name="your.package.name.here.ServiceClass" />ภายในแท็กแอปพลิเคชัน
Japheth Ongeri - inkalimeva

คำตอบ:


279

คุณอาจไม่มีบริการในไฟล์ Manifest หรือไม่มีบริการ<intent-filter>ที่ตรงกับการกระทำของคุณ การตรวจสอบ LogCat (ผ่านadb logcatDDMS หรือมุมมอง DDMS ใน Eclipse) ควรแสดงคำเตือนบางอย่างที่อาจช่วยได้

คุณควรเริ่มใช้บริการผ่านทาง:

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

1
คุณจะแก้ไขข้อบกพร่องได้อย่างไร? ไม่เคยเรียกใช้บริการของฉัน debugg ของฉันไม่แสดงอะไรเลย

เพิ่มแท็ก Log.e ทุกที่: ก่อนที่คุณจะเปิดตัวบริการผลลัพธ์ของความตั้งใจในการให้บริการภายในคลาสบริการที่จะเดินทาง (onCreate, onDestroy, วิธีใดก็ได้และทั้งหมด)
Zoe

มันใช้งานได้กับแอพของฉันบน android sdk 26+ แต่ปริมาณไม่ได้อยู่ใน android sdk 25 หรือต่ำกว่า มีวิธีแก้ไขอย่างไร?
Mahidul Islam

@MahidulIslam: ฉันขอแนะนำให้คุณถามคำถาม Stack Overflow แยกต่างหากซึ่งคุณสามารถให้ตัวอย่างที่ทำซ้ำได้เพียงเล็กน้อยเพื่ออธิบายปัญหาและอาการของคุณโดยละเอียดยิ่งขึ้น
CommonsWare

@CommonsWare ฉันถามคำถามไปแล้วและนั่นคือ: - stackoverflow.com/questions/49232627/…
Mahidul Islam

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และขอโทษที่มาสาย
Jagjit Singh

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");
    }

}

กำหนดบริการนี้เป็นไฟล์ Manifest ของโครงการ:

เพิ่มแท็กด้านล่างในไฟล์Manifest :

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

เสร็จสิ้น


7
มีการปรับปรุงประสิทธิภาพมากน้อยเพียงใดเมื่อฉันออกจากกิจกรรมและบริการในแพ็คเกจเดียวกัน ไม่เคยได้ยินมาก่อน
OneWorld

บางทีพวกเขาอาจหมายถึงประสิทธิภาพในความรู้สึกหลวม ๆ ที่คลุมเครือไม่เกี่ยวกับความเร็วในการวิ่ง?
Anubian Noob

3

ฉันชอบทำให้มันเป็นแบบไดนามิกมากขึ้น

Class<?> serviceMonitor = MyService.class; 


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

อย่าลืม Manifest

<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 และอุปกรณ์ที่มากขึ้นใช้สำหรับบริการภาคพื้นดินและแสดงการแจ้งเตือนให้กับผู้ใช้

หรือใช้บริการ geofencing สำหรับการอัปเดตตำแหน่งในการอ้างอิงพื้นหลัง http://stackoverflow.com/questions/tagged/google-play-services

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.