首先,我的应用程序的功能是阅读文章。当用户阅读文章并想将文章分享给 facebook 或其他人时,我无法从类型中找到链接/超链接。
这是我的分享功能
private void shareIt() {
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = "Here is the share content body";
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
}
我想要的是使用计算机阅读文章并获得分享按钮时的分享功能。在共享媒体中,它将以文章内容的形式出现,而不是纯文本。
那么,如何编辑代码以便我可以共享链接?
请在 Manifest.xml 上指导我,我不确定 interfilter 也需要添加哪个类别。
其次,我看到了共享列表,内置列表对我来说不太好,因为我想要那些 facebook、sina、twitter 而不是 google、gmail、蓝牙、line 或消息传递。
那么,如何通过java实现共享列表呢?