我想在我的應用程序中集成Glympse API,其中有兩個我的移動應用程序的用戶,分別使用應用程序,並且如果一個人想要查看另一個的實時位置,並且它們都在不同的模塊上工作,但是應用程序相同。Glympse API - 發送Glympse票證 - 可行性
您的Glympse API可行嗎?
而且我得到空指針,而嘗試使用下面的代碼發送Glympse票時從GlympseLiteWrapper越來越實例
**/*Send a Glympse*/**
GTicketLite ticket = LiteFactory.createTicket(3600000, "Going home!", null);
// Set flags that adjust the presentation of the Glympse Send Wizard.
// These can enable/disable fields in the wizard screen.
final int WIZARD_FLAGS
= LC.SEND_WIZARD_INVITES_EDITABLE
| LC.SEND_WIZARD_MESSAGE_EDITABLE
| LC.SEND_WIZARD_DESTINATION_EDITABLE
| LC.SEND_WIZARD_TIME_EDITABLE;
// Launches the wizard which will send the Glympse
GGlympseLite glympse = GlympseLiteWrapper.instance().getGlympse();
glympse.sendTicket(ticket, WIZARD_FLAGS);
可否請你澄清你的意思「以及兩者的什麼他們在不同的模塊,但同一個應用程序「? – MechEthan