【发布时间】:2020-03-27 18:14:53
【问题描述】:
【问题讨论】:
【问题讨论】:
这是与其他应用分享文本的方法:
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Hello!");
// (Optional) Here we're setting the title of the content
sendIntent.putExtra(Intent.EXTRA_TITLE, "Send message");
// (Optional) Here we're passing a content URI to an image to be displayed
sendIntent.setData(contentUri);
sendIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
// Show the Sharesheet
startActivity(Intent.createChooser(sendIntent, null));
您可以使用这样的坐标来代替“hellow”:
https://www.google.com/maps/@[lat],[long],[zoom]z
例子
https://www.google.com/maps/@14.878651,50.2937643,4z
如果你只想发送到电报,你可以use this
【讨论】: