繁体   English   中英

收到通知时如何启动后台作业

[英]how to start background job when a notification received

大家好,这是我的第一个问题,希望能得到答复。 我有一个Android应用程序,借助FCM,我能够在前台,后台以及该应用程序被终止时接收通知。

public class FirebaseMessagingService extends com.google.firebase.messaging.FirebaseMessagingService {

final String jobTag="copyDb";

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    super.onMessageReceived(remoteMessage);

    String notification_title = remoteMessage.getNotification().getTitle();
    String notification_message = remoteMessage.getNotification().getBody();

    String click_action = remoteMessage.getNotification().getClickAction();

    String from_user_id = remoteMessage.getData().get("from_user_id");

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle(notification_title)
                    .setContentText(notification_message);


    Intent resultIntent = new Intent(click_action);
    resultIntent.putExtra("user_id", from_user_id);


    PendingIntent resultPendingIntent =
            getActivity(
                    this,
                    0,
                    resultIntent,
                    PendingIntent.FLAG_UPDATE_CURRENT
            );

    mBuilder.setContentIntent(resultPendingIntent);




    int mNotificationId = (int) System.currentTimeMillis();

    NotificationManager mNotifyMgr =
            (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

    mNotifyMgr.notify(mNotificationId, mBuilder.build());

}

我想在通知到达时开始后台作业,我使用了firebase jobDispatcher:

        SharedPreferences sharedPref = getApplicationContext().getSharedPreferences("fromUser", Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = sharedPref.edit();
    editor.putString("fromUser",from_user_id);
    editor.commit();

    FirebaseJobDispatcher dispatcher = new FirebaseJobDispatcher(new GooglePlayDriver(getApplicationContext()));
    Job myJob = dispatcher.newJobBuilder()
            .setService(jobDispatcher.class) // the JobService that will be called
            .setTag(jobTag)
            .build();

    dispatcher.mustSchedule(myJob);

但是当应用程序在后台或被杀死时,它不起作用,但我仍收到通知。

我试图将后台任务移到FCM onMessageReceived,也遇到了同样的问题。

收到通知时,有什么方法可以触发后台任务?

不寻常的赞赏,一个好的答案:))

我不确定这项工作是否可行,但是您可以尝试。 创建一个类并扩展Service然后在内部创建AsyncTask ,例如:

public class TestServices extends Service {
@Nullable
@Override
public IBinder onBind(Intent intent) {
    return null;
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    MyAsyncTask asyncTask = new MyAsyncTask();
    asyncTask.execute();
    return START_NOT_STICKY;
}
private class MyAsyncTask extends AsyncTask<Void, Void, Void>{
    @Override
    protected Void doInBackground(Void... voids) {
        // preform your task here, downloading saving etc.
        return null;
    }

    @Override
    protected void onPostExecute(Void aVoid) {
        super.onPostExecute(aVoid);
        Intent intent = new Intent(TestServices.this, TestServices.class);
        stopService(intent);
       }
    }
 }

不要忘记在清单中注册您的Service类。

然后在方法onMessageReceived内部进行一些更改。 尝试这个:

Intent notificationIntent = new Intent(mContext, TestServices.class);
PendingIntent pendingIntent = PendingIntent.getService(mContext, 0,    notificationIntent, 0);

希望可能对您有所帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM