3

好吧,我真的不知道我在这里缺少什么。我试图让 C2DM 为我们的应用程序工作,尤其是处理广播让我很挣扎。

我们有一个应用范围的广播接收器:

public final class AppBroadcastReceiver extends BroadcastReceiver {

    //get an instance if not already present
    public static AppBroadcastReceiver getInstance(final IntentFilter filter) {
        if (instance == null) {
            instance = new GlobalBroadcastReceiver();
        }
        if (filter != null) {
            filter.addAction("com.google.android.c2dm.intent.REGISTRATION";
            filter.addAction("com.google.android.c2dm.intent.RECEIVE");
            filter.addCategory("my.package.name");
        }
        return instance;
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        final String broadcastAction = intent.getAction();
        Log.d(logTag, String.format("GlobalBroadcastReceiver::onReceive for action = %s", broadcastAction));

        if ("com.google.android.c2dm.intent.REGISTRATION".equals(broadcastAction)) {
            for (final AppBroadcastListener l : listeners) {
                l.c2dmRegistration(intent);
            }
        } else if ("com.google.android.c2dm.intent.RECEIVE".equals(broadcastAction)) {
            for (final ApplBroadcastListener l : listeners) {
                l.c2dmReceive(intent);
            }
        }//else
    }//onReceive
}

AppBroadcastListener 是我们所有活动都在实现的接口,以确保至少存在适当的方法。在他们的 onResume() 和 onStop() 方法中,活动分别在 Receiver 注册和取消注册。

出于测试目的,我有一个 Debug Activity 向我证明了以下两种方法:

public void sendC2DM(View v){
    Intent intent= new Intent();
    intent.setAction(com.google.android.c2dm.intent.RECEIVE);
    intent.putExtra("message","Bender: \"kiss my shiny metal ass!\"");
    intent.addCategory(getPackageName() );

    sendBroadcast(intent);
}

public void registerC2DM(View v){
    Intent registrationIntent = new Intent(com.google.android.c2dm.intent.REGISTRATION);
    registrationIntent.putExtra("app", PendingIntent.getBroadcast(this, 0, new Intent(), 0)); // boilerplate
    registrationIntent.putExtra("sender", ourSenderIdregistered@googlemail.com);
    startService(registrationIntent);
}

在 android.manifest 中,我在<application>-tag 中添加了以下行:

    <receiver
        android:name=".AppBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >

        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />

            <category android:name="my.package.name" />
        </intent-filter>
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <category android:name="my.package.name" />
        </intent-filter>
    </receiver>

所以我们想要接收广播的每个活动都在它的 onResume() 上的 BroadcastReceiver 上注册自己,当发生某些事情时,BroadcastReceiver 将捕获并调用实现的方法。例如,记录消息或显示 Toast。

但是,当我发送“C2DM 消息”时,我看到这个结构适用于自制广播。(Bender 的消息在 Toast 中弹出)但registerC2DM().startService(registrationIntent);只记录:

无法启动服务 Intent { act=com.google.android.c2dm.intent.REGISTRATION (has extras) }:未找到

我不知道我在这里缺少什么。一般建议似乎是:检查您的 android.manifest(完成)或:使用注册的 gmail 帐户登录。
不确定这件事。我使用我的 gmail 帐户登录,是的,但不是ourSenderIdregistered@googlemail.com我们在注册时设定的意图。我也坚信这不是解决方案。(告诉我们所有的客户使用这个帐户登录......嗯不?!)。
所以我想这是别的东西,但我找不到它:C

4

1 回答 1

3

好的,这真的很容易发现:

如果您想注册 c2dm,请使用

com.google.android.c2dm.intent.REGISTER

但是要获取此消息的答案,您必须设置您是广播接收器才能收听

com.google.android.c2dm.intent.REGISTRATION

微妙的?是的,这里再次出现错误和更正版本:

//false
public void registerC2DM(View v){
    Intent registrationIntent = new Intent(com.google.android.c2dm.intent.REGISTRATION);
    registrationIntent.putExtra("app", PendingIntent.getBroadcast(this, 0, new Intent(), 0)); // boilerplate
    registrationIntent.putExtra("sender", ourSenderIdregistered@googlemail.com);
    startService(registrationIntent);
}


//true
public void registerC2DM(View v){
    Intent registrationIntent = new Intent("com.google.android.c2dm.intent.REGISTER");
registrationIntent.putExtra("app", PendingIntent.getBroadcast(this, 0, new Intent(), 0)); // boilerplate
registrationIntent.putExtra("sender", ourSenderIdregistered@googlemail.com);
    startService(registrationIntent);
}

在意识到这一点之前砸了 3 个键盘...... :)

于 2012-04-30T14:45:48.730 回答