I used the following code.
我使用了以下代码。
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_SUBJECT, subject);
share.putExtra(
Intent.EXTRA_TEXT,
"i have just visited https://www.google.com");
startActivity(Intent.createChooser(share,
"Share Sydneyho! with your friends via"));
Inten