0

我正在处理推送通知。接收和显示通知当前正在工作,但点击事件未按应有的方式运行。

int NOTIFICATION_ID = 1593;

        NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        Notification notification = new Notification(R.drawable.notification, title, System.currentTimeMillis());
        notification.flags |= Notification.FLAG_AUTO_CANCEL;

        Intent notificationIntent =  new Intent(this, MyMainActivity.class);
        notificationIntent.putExtra("test", "test");
        notificationIntent.setAction("load_notifications");

        PendingIntent intentNotification = PendingIntent.getActivity(this, 999, notificationIntent, 0);
        notification.setLatestEventInfo(this, title,  body, intentNotification);
        notificationManager.notify(NOTIFICATION_ID, notification);

这就是我显示通知的方式,它还包括开始/恢复我的主要活动。

但是,如果我在应用程序中单击通知, putExtra("test", "test") 和 setAction 似乎无效。如果我的应用程序不工作,从通知启动它可以正常工作。

我的主要活动中的 onResume 函数:

public void onResume() {
        super.onResume();

        if(this.getIntent().getAction().equalsIgnoreCase("load_notifications")) {
//Do stuff
            }


    }

我的应用配置如下:

 <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".Activity"
            android:label="@string/app_name" 
            android:configChanges="orientation"
            android:launchMode="singleInstance"
            >

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <!-- Push notifications -->

        <receiver android:name="com.google.android.gcm.GCMBroadcastReceiver" android:permission="com.google.android.c2dm.permission.SEND" >
            <intent-filter>
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
                <category android:name="com.app.android" />
            </intent-filter>
        </receiver>

        <service android:name=".GCMIntentService" />

    </application>
4

1 回答 1

0

答案可能在这里:通知中未显示操作按钮

API 16中引入了通知操作。

这意味着您应该将目标 SDK 设置为 16 或更高版本。

但是,只有Jelly Bean更高版本可以利用通知操作 - 请确保在这些平台上测试此功能。

NotificationCompat.Builder负责生成与其运行的任何 API 兼容的 Notification,因此如果您要支持Ice Cream Sandwich 和更早版本,请继续使用它。如果没有,只需使用Notification.Builder就足够了(当然在更改目标 SDK 之后)。

于 2014-03-27T15:49:48.130 回答