共有インテントに関連付けられた場所を共有したい。出来ますか?
このようなものですが、位置情報を追加します。
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"));
ありがとう。