在Android上关闭应用程序时打开通知意图活动的时间

时间:2014-09-19 08:10:58

标签: android push-notification

我使用下面的代码在应用关闭时打开意向活动通知,但在获取通知时崩溃。 请帮我! 这是我第一次遇到stackoverflow问题。

import com.pushbots.push.Pushbots;
import android.app.Application;

public class Myapplication extends Application {
    private String SENDER_ID="1048363856500";
    private String PUSHBOTS_APPLICATION_ID="541a3e411d0ab1a4018b45b5";

    public void onCreate(){
    Pushbots.init(this, SENDER_ID,PUSHBOTS_APPLICATION_ID);
    Pushbots.getInstance().setMsgReceiver(customHandler.class);
    super.onCreate();
    }

0 个答案:

没有答案