2014-03-13 45 views
0

我有應用程序「A」在Android設備「A」,我有應用程序「B」在Android設備「B」。我想發送通知從設備「A」到設備「B」與她的電話號碼如何發送兩個Android設備之間的通知

+0

您可以發送短信 –

+0

我怎麼可以發短信 – dalivitch

+0

你聽到一個叫做工具[谷歌](https://www.google.it/#q=android%20send%20sms%20intent) ? –

回答

0

您可以使用電話號碼定位的推送通知。就拿上Parse.com看看 - Android push guide可以在ParseInstallation保存電話號碼,然後針對此安裝:

ParseQuery query = ParseInstallation.getQuery(); 
query.whereEqualTo("phone", "1234567890"); 
ParsePush push = new ParsePush(); 
push.setQuery(query); 
push.sendPushInBackground(); 
相關問題