2014-12-02 91 views
0

我正在開發一個應用程序,我必須發送coordinates of the latitude and longitude to another android phone in the form of the link,以便當他們點擊該鏈接時,帶有該位置的谷歌地圖將打開。通過短信發送到另一個Android手機的鏈接

我已經徹底search for google Maps但我沒有找到任何令人滿意的東西,將實現我的目標。

在此先感謝!

我試圖做這樣的..

SmsManager smsManager= SmsManager.getDefault(); 
smsManager.sendTextMessage(phoneno, null, "This is my location"+latitude+" "+longitude+"I need ur  Help!!", null,null); 

回答