使用我的应用程序中的Whatsapp共享位置

时间:2017-03-15 12:44:40

标签: android android-intent location whatsapp

在我的一个应用程序中,我将纬度和逻辑从我的应用程序传递到whatsapp并希望共享该位置。我使用这段代码实现了它。

public void sendMessage() {
    String whatsAppMessage = "http://maps.google.com/maps?saddr=" + latitude + "," + longitude;
    Intent sendIntent = new Intent();
    sendIntent.setAction(Intent.ACTION_SEND);
    sendIntent.putExtra(Intent.EXTRA_TEXT, whatsAppMessage);
    sendIntent.setType("text/plain");
    sendIntent.setPackage("com.whatsapp");
    startActivity(sendIntent);
}

一切都很好,因为它是从谷歌地图给我的位置卡,我能够分享相同。但我只是想知道,无论如何,我可以分享位置,如默认whatsapp如何做。我的意思是Whatsapp使用的卡片。请检查屏幕截图以便清楚了解。enter image description here。 任何帮助表示赞赏。谢谢。

0 个答案:

没有答案