我有一个Android Web View应用程序,我在其中添加了共享操作。但我希望它能将我的网页视图中的文字发送到任何应用程序。
请帮我解决这个问题。
这里是它共享 DEMO XYZ 文本的代码但是我想分享这个在href中显示的文本
<a href="share://send?text=hello this is demo testing">Share</a>
我该怎么做才能帮助我。
if (url!=null && url.startsWith ("share://"))
}
Intent intent = new Intent (Intent.ACTION_SEND);
intent.setType("text/plain")
intent.putExtra (Intent.EXTRA_TEXT,"DEMO XYZ");
view.getContext().startActivity(Intent.createChooser(intent,"share"));
return true;
}
在我使用的网站链接
<a href="share://send?text=hello this is demo testing">Share</a>