Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Share image with both setData and extra stream intent

Cette révision appartient à :
inorichi 2017-11-04 18:05:02 +01:00
Parent 23c0f2c313
révision 9714a30148

Voir le fichier

@ -575,9 +575,9 @@ class ReaderActivity : BaseRxActivity<ReaderPresenter>() {
uri = File(uri.toString().substringAfter("file://")).getUriCompat(this)
}
val intent = Intent(Intent.ACTION_SEND).apply {
setDataAndType(uri, "image/*")
putExtra(Intent.EXTRA_STREAM, uri)
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_GRANT_READ_URI_PERMISSION
type = "image/*"
}
startActivity(Intent.createChooser(intent, getString(R.string.action_share)))
}