1

实际上,我正在处理 Android 应用程序的通知。我的两个主要信息来源是本教程和 android 开发者网站。

让我快速描述一下我的应用程序:

  • 在我的应用程序中,我使用web servicesPOST HTTP请求一起使用的 (WS)。
  • 对于通知,我使用GCM系统。
  • 我的应用程序使用上面的“POST HTTP”请求系统在我的服务器上注册。
  • 实际上,我的服务器与教程中的工作完全相同(即使用两个参数和设备的注册 ID在数据库中注册一个帐户,并使用 GCM 向设备发送消息)

实际上所有这些步骤都有效:

  1. 我的应用程序接收成功获取注册 ID(gcm.register(SENDER_ID);工作)
  2. 我的应用程序在我的服务器上成功注册
  3. 当我尝试从我的设备发送消息时,我的服务器收到一条成功的消息

    {"multicast_id" : 6276079906208554309 , "success" : 1 , "failure" : 0 , "canonical_ids" : 0 , "results" : [{"message_id" : "0:1374826298092960%978fee92f9fd7ecd"}]}

问题:

  • 我的设备上什么也没有收到

我做了什么:

我尝试做两个版本的应用程序:

  • 首先,我使用教程的一部分代码制作了一个应用程序,但使用了package com.google.android.gms.gcm.GoogleCloudMessagingcom.google.android.gcm推荐使用的(并在教程中使用)的,但我无法收到消息,所以我尝试了第二个版本……< /li>
  • 这次我学习了整个教程,只是将服务器上的注册功能更改为使用我的,但就像第一个应用程序一样,我的设备上什么也没有。(我这样做是为了了解接待处的工作方式,但对我没有帮助,现在我会忘记这种方式)

我在哪里需要你的帮助:

我需要一些/更多解释如何接收我的服务器发送的消息。

  • 我的主要活动使用 android 开发者网站上描述的代码。
  • 我使用 android 开发者网站上的代码创建了一个广播类。
  • 我没有创建任何 IntentService 或服务,也许这是我的错误,但根据我读到的内容,我知道我不需要一个,就像以前不推荐使用的 GCMBaseIntentService

总结:

  • 我真的很感激一些帮助,以了解我需要在我的设备上接收消息,因为实际上我不知道在哪里可以找到我需要能够使用该系统的信息。

谢谢。

PS:如果您需要我的代码的某些部分,请问我。

编辑 我的manifest

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.androidhive.pushnotifications2"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />

    <permission
        android:name="com.androidhive.pushnotifications2.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />

    <uses-permission android:name="com.androidhive.pushnotifications2.permission.C2D_MESSAGE" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.VIBRATE" />

    <!-- Main activity. -->
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >

        <!-- Register Activity -->
        <activity
            android:name="com.androidhive.pushnotifications2.cop.RegisterActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <!-- Main Activity -->
        <activity
            android:name="com.androidhive.pushnotifications2.MainActivity"
            android:configChanges="orientation|keyboardHidden"
            android:label="@string/app_name" >
        </activity>


        <receiver
            android:name=".GcmBroadcastReceiver"

            android:permission="com.google.android.c2dm.permission.SEND" >
            <intent-filter>

                <!-- Receives the actual messages. -->
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                <!-- Receives the registration id. -->
                <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

                <category android:name="com.androidhive.pushnotifications2" />
            </intent-filter>
        </receiver>         
    </application>

</manifest>

还有我的 GcmBroadcastReceiver(来自教程)

WakeLocker 也与教程相同。

package com.androidhive.pushnotifications2;

import android.app.Activity;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;

import com.google.android.gms.gcm.GoogleCloudMessaging;

public class GcmBroadcastReceiver extends BroadcastReceiver {
    static final String TAG = "GCMDemo";
    public static final int NOTIFICATION_ID = 1;
    private NotificationManager mNotificationManager;
    NotificationCompat.Builder builder;
    Context ctx;
    @Override
    public void onReceive(Context context, Intent intent) {
        ///
        WakeLocker.acquire(context);
        ///
        System.out.println("TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT");
        GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context);
        ctx = context;
        String messageType = gcm.getMessageType(intent);
        if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
            sendNotification("Send error: " + intent.getExtras().toString());
        } else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED.equals(messageType)) {
            sendNotification("Deleted messages on server: " +
                    intent.getExtras().toString());
        } else {
            sendNotification("Received: " + intent.getExtras().toString());
        }
        WakeLocker.release();
        setResultCode(Activity.RESULT_OK);
    }

    // Put the GCM message into a notification and post it.
    private void sendNotification(String msg) {
        mNotificationManager = (NotificationManager)
                ctx.getSystemService(Context.NOTIFICATION_SERVICE);

        PendingIntent contentIntent = PendingIntent.getActivity(ctx, 0,
                new Intent(ctx, MainActivity.class), 0);

        NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(ctx)
        .setSmallIcon(R.drawable.common_signin_btn_icon_focus_light)
        .setContentTitle("GCM Notification")
        .setStyle(new NotificationCompat.BigTextStyle()
        .bigText(msg))
        .setContentText(msg);

        mBuilder.setContentIntent(contentIntent);
        mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    }
}
4

0 回答 0