我想分享一个附加到我的分享意图的位置。是否可以?
像这样,但添加位置信息:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "The status update text");
startActivity(Intent.createChooser(intent, "Dialog title text"));
谢谢。