用户单击 Urban Airship 通知时重新启动 android 应用程序

Posted

技术标签:

【中文标题】用户单击 Urban Airship 通知时重新启动 android 应用程序【英文标题】:Re-launching android application when user clicks Urban Airship notification 【发布时间】:2013-01-28 18:04:47 【问题描述】:

我有一个成功设置为使用 Urban Airship 接收通知的 android 应用程序,但在处理 PushManager.ACTION_NOTIFICATION_OPENED) 广播时遇到了问题。我的 BroadcastReceiver 正在工作,正在接收消息并调用以下内容(来自示例代码):

Intent launch = new Intent(Intent.ACTION_MAIN);
launch.setClass(UAirship.shared().getApplicationContext(), Main.class);
launch.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
UAirship.shared().getApplicationContext().startActivity(launch);

这可以正常工作并将主要活动带回前台,除非应用程序不再运行。如果我向手机发送通知,关闭应用程序,然后打开通知,应用程序会在 NullPointerException 上崩溃:

Failed to load meta-data, NullPointer: null
Unable to takeOff automatically
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start receiver com.urbanairship.CoreReceiver:         java.lang.NullPointerException
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2236)
at android.app.ActivityThread.access$1500(ActivityThread.java:130)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1271)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4745)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)

我不知道是什么原因造成的。有什么想法吗?

【问题讨论】:

【参考方案1】:

好的,想通了。

我正在实例化 UrbanAirship 并从 Activity 上下文注册 IntentReceiver,而不是从 Application 上下文。

哎呀。

【讨论】:

你能分享一下我也遇到同样问题的代码吗?请帮助我@TomBomb。【参考方案2】:

我遇到了同样的问题。我通过将 UAirship 初始化放入应用程序的 onCreate 而不是活动来解决它。

您好 Amit Jayaswal,请参阅以下示例:

公共类 MyApplication 扩展应用程序

@Override
public void onCreate() 
    super.onCreate();

    // Optionally, customize your config at runtime:
    //
    // AirshipConfigOptions options = new AirshipConfigOptions();
    // options.inProduction = false;
    // options.developmentAppKey = "Your Development App Key";
    // options.developmentAppSecret "Your Development App Secret";
    //
    // UAirship.takeOff(this, options);

    UAirship.takeOff(this, new UAirship.OnReadyCallback() 
        @Override
        public void onAirshipReady(UAirship airship) 
            // Perform any airship configurations here

            // Create a customized default notification factory
            DefaultNotificationFactory defaultNotificationFactory = new DefaultNotificationFactory(getApplicationContext());
            defaultNotificationFactory.setSmallIconId(R.drawable.ic_notification);
            //defaultNotificationFactory.setColor(NotificationCompat.COLOR_DEFAULT);

            // Set it
            airship.getPushManager().setNotificationFactory(defaultNotificationFactory);

            // Enable Push
            airship.getPushManager().setPushEnabled(true);
        
    );

【讨论】:

以上是关于用户单击 Urban Airship 通知时重新启动 android 应用程序的主要内容,如果未能解决你的问题,请参考以下文章

使用 Urban Airship 跟踪活动用户的推送通知

如何在 iPhone 中实现 Urban Airship 的推送通知?

Passkit 推送通知不适用于 Urban Airship

使用 Urban Airship 的推送通知在第一次启动时返回 apID 为 null

无法从 Urban Airship 获得推送通知

Urban Airship:默认状态栏通知的自定义图标