gpt4 book ai didi

android - 未调用 GCM 广播接收器 onReciever

转载 作者:太空狗 更新时间:2023-10-29 16:20:52 24 4
gpt4 key购买 nike

我正在尝试为我的 android 应用程序实现通知,但我没有收到调用 MyBroadcastReciever 的 OnReceive 事件。

这是我的 list 文件:

<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" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

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

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.gcmtester.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="com.example.gcm.MyBroadcastReceiver"
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.example.gcm" />
</intent-filter>
</receiver>
<service android:name="com.example.gcm.MyIntentService" />
</application>
</manifest>

这是我尝试调用该服务的方式。

    Intent registrationIntent = new Intent("com.google.android.c2dm.intent.REGISTER");
registrationIntent.putExtra("app", PendingIntent.getBroadcast(this, 0, new Intent(), 0));
registrationIntent.putExtra("sender", "MY_SENDER_ID");
startService(registrationIntent);

MyIntentService 代码也类似于提到的 here .但是我的 BroadcastReciever onRecieve 方法仍然没有被调用。我忘记了什么是什么问题?

注意 MyIntentService 和 BroadcastReciever 类位于 Main Activity< 的单独包 (com.example.gcm)包。

最佳答案

此处介绍了如何使用 Google 提供的 gcm.jar 库来使用 Google 的云消息服务。

转到 SDK Manager>Extras 并下载“Google Cloud Messaging for android”库。您可以在 android 安装文件夹中找到 jar 文件。 Android>extras>google>gcm>gcm-client>dist>gcm.jar

将此 jar 包含在您的项目中。

第 1 步:修改 list 文件:

添加这个接收器

    <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" />
</intent-filter>
</receiver>

添加此服务:

<service android:name="com.your.package.GCMIntentService" />

第 2 步:创建扩展 GCMBaseIntentService 的 GCMIntentService。确保按照 manifest.xml 中 list 的 package 属性中的定义将其放入应用程序的默认包中

是这样的

public class GCMIntentService extends GCMBaseIntentService {

@Override
protected void onError(Context arg0, String arg1) {
// TODO Auto-generated method stub

}

@Override
protected void onMessage(Context arg0, Intent arg1) {
// TODO Auto-generated method stub

}

@Override
protected void onRegistered(Context arg0, String arg1) {
// TODO Auto-generated method stub

}

@Override
protected void onUnregistered(Context arg0, String arg1) {
// TODO Auto-generated method stub

}

}

第 3 步:注册设备。

GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
GCMRegistrar.register(this, SENDER_ID);

此 SENDER_ID 是您在注册 GCM 时获得的发件人 ID(或我忘记的项目 ID)。就这样你就完成了。现在以您想要的方式覆盖 GCMIntentService 中的任何方法。可能会记录一些信息并查看。覆盖的方法有明显的名称。就像设备注册完成时将调用 onRegistered 一样,String 参数是 GCM 注册 ID。有关更多信息,请单击 here

希望对您有所帮助。

关于android - 未调用 GCM 广播接收器 onReciever,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15269039/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com