public boolean onLongClick(View v) {
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"Text here - " );
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, viewContentWebView.getUrl());
startActivity(Intent.createChooser(shareIntent, "Link Goes to..."));
return true;
}
大家好, 使用该代码,我试图与 longpress 共享 webview 的链接。因此,用户将在 webview 上按下一段时间并获得“共享方式”菜单。
但我怎么能得到任何结果?