This question already has answers here:
Android Share Via Dialog
(4个答案)
在8个月前关闭。
我想实现允许用户通过文本消息,facebook,电子邮件等共享url的共享功能。在kotlin / android中是否存在与ios中一样的共享表功能?如何使用kotlin代码访问该功能?
(4个答案)
在8个月前关闭。
我想实现允许用户通过文本消息,facebook,电子邮件等共享url的共享功能。在kotlin / android中是否存在与ios中一样的共享表功能?如何使用kotlin代码访问该功能?
最佳答案
这将对您有所帮助:
val sharingIntent = Intent(Intent.ACTION_SEND)
sharingIntent.type = "text/plain"
val shareBody = "Text to be shared"
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject")
sharingIntent.putExtra(Intent.EXTRA_TEXT, shareBody)
context.startActivity(Intent.createChooser(sharingIntent, "Share using ..."))
07-27 19:12