我有App" A"在Android设备" A"我有App" b"在Android设备" B"我想从设备发送通知" A"设备" B"用她的号码电话
答案 0 :(得分:1)
您可能正在寻找Google Cloud Messaging服务。有关详细信息,请参阅此链接。 http://developer.android.com/google/gcm/index.html
用于在推送通知中发送消息。以下链接很有用。 http://developer.android.com/guide/topics/ui/notifiers/notifications.html
答案 1 :(得分:0)
您可以使用电话号码定位的推送通知。请访问Parse.com - Android push guide您可以在ParseInstallation
中保存一个电话号码,然后定位此安装:
ParseQuery query = ParseInstallation.getQuery();
query.whereEqualTo("phone", "1234567890");
ParsePush push = new ParsePush();
push.setQuery(query);
push.sendPushInBackground();