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上按一下,然后将“分享通过”菜单。
但我怎么能得到任何结果?