我正在尝试创建 2 个通过 GCM 服务进行通信的应用程序。假设我正在尝试将字符串从应用程序 A 发送到 B,然后从 B 发送到 A。
我对 GCM 服务非常陌生,我有点困惑。每次看到 myApiCode 时,我都会将原始代码中的它替换为 api 代码。这是 A 代码:
public class MainActivity extends Activity
{
private final String myApiKey = "903137756997";
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
final String regId = GCMRegistrar.getRegistrationId(this);
if (regId.equals("")) {
GCMRegistrar.register(this, "myApiCode");
} else {
Log.v("INFORMATION", "Already registered");
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
这里是 GCMIntentService:
public class GCMIntentService extends GCMBaseIntentService
{
private final String myApiKey = "903137756997";
public GCMIntentService()
{
super("123");
}
...
@Override
protected void onMessage(Context arg0, Intent arg1)
{
Log.d("GCM", "RECIEVED A MESSAGE");
System.out.println("123123123123");
}
...
}
我附加的代码是应用程序 A,现在我将附加应用程序 B 的代码:
以下代码是从主活动调用的服务:
public void onCreate()
{
super.onCreate();
Sender sender = new Sender(myApiKey);
Message message = new Message.Builder().build();
Result result = null;
try {
result = sender.send(message, "123", 5);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (result.getMessageId() != null) {
String canonicalRegId = result.getCanonicalRegistrationId();
if (canonicalRegId != null) {
// same device has more than on registration ID: update database
}
} else {
String error = result.getErrorCodeName();
if (error.equals(Constants.ERROR_NOT_REGISTERED)) {
// application has been removed from device - unregister database
}
}
}
我不得不提一下,这两个应用程序都在毫无例外地运行,但看起来什么都没有发生。我想我的键做错了,因为我仍然无法理解应用程序 B 将如何找到应用程序 A。