完全关闭应用程序后,无法接收来自gcm的通知

时间:2016-04-23 20:23:27

标签: android google-cloud-messaging

我已经研究了一小时一小时,发现了许多类似的问题,但我的问题没有可行的解决方案。

我理解是否通过强制关闭关闭应用程序,这是正常的,我没有从gcm接收数据。但是在我启动应用程序之前,我无法通过gcm收到通知。所以应用程序正在运行前景或后台然后我只能从gcm接收数据但是当我通过滑动它关闭应用程序(这不是通过强制关闭来完成)时,通知没有显示出哪个意思gcm根本没有收到任何数据。 。所以这意味着我需要保持活跃状态​​,但如果我这样做,那么使用gcm就没有意义了推送通知的设计。

这是我的清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.khooteckwei.google" >

    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

    <permission android:name="com.example.gcmtesting.google.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission android:name="com.example.gcmtesting.google.permission.C2D_MESSAGE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <receiver
            android:name=".GcmBroadcastReceiver"
            android:permission="com.google.android.c2dm.permission.SEND" >
            <intent-filter>
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                <category android:name="com.example.gcmtesting.google" />
            </intent-filter>
        </receiver>
        <service android:name=".GcmIntentService" />
    </application>

</manifest>

这里是wakefulBroadcastReceiver

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // Explicitly specify that GcmIntentService will handle the intent.
        ComponentName comp = new ComponentName(context.getPackageName(),
                GcmIntentService.class.getName());
        // Start the service, keeping the device awake while it is launching.
        startWakefulService(context, (intent.setComponent(comp)));
        setResultCode(Activity.RESULT_OK);
    }
}

当应用程序处于活动状态时,通知正常工作,因此我没有包含用于显示通知的功能。这2页有任何问题吗?

1 个答案:

答案 0 :(得分:0)

我认为您的问题出现在您的GcmBroadcastReceiver接收器中,您可以查看此链接,我认为它可以帮助您使用GCM http://www.intertech.com/Blog/push-notifications-tutorial-for-android-using-google-cloud-messaging-gcm/

我认为通知不起作用,因为你的接收器没有检查你的应用程序是否运行,如果你需要处理通知或者如果没有显示android通知