使用内置 Android 分享模块时,Facebook Android 应用程序无法接受 EXTRA_SUBJECT 和 EXTRA_TEXT 字段。
val sharingIntent = Intent(Intent.ACTION_SEND_MULTIPLE)
sharingIntent.putExtra(Intent.EXTRA_TEXT,"@getyoteam")
sharingIntent.putExtra(Intent.EXTRA_STREAM, files )
sharingIntent.type = "image/* "
startActivity(Intent.createChooser(sharingIntent, "Share via"))