|
@@ -1,15 +1,22 @@
|
|
|
package eu.kanade.tachiyomi.util.system
|
|
|
|
|
|
import android.content.ClipData
|
|
|
+import android.content.Context
|
|
|
import android.content.Intent
|
|
|
import android.net.Uri
|
|
|
+import eu.kanade.tachiyomi.R
|
|
|
|
|
|
-fun Uri.toShareIntent(type: String = "image/*"): Intent {
|
|
|
+fun Uri.toShareIntent(context: Context, type: String = "image/*"): Intent {
|
|
|
val uri = this
|
|
|
- return Intent(Intent.ACTION_SEND).apply {
|
|
|
+
|
|
|
+ val shareIntent = Intent(Intent.ACTION_SEND).apply {
|
|
|
putExtra(Intent.EXTRA_STREAM, uri)
|
|
|
clipData = ClipData.newRawUri(null, uri)
|
|
|
setType(type)
|
|
|
- flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_GRANT_READ_URI_PERMISSION
|
|
|
+ flags = Intent.FLAG_GRANT_READ_URI_PERMISSION
|
|
|
+ }
|
|
|
+
|
|
|
+ return Intent.createChooser(shareIntent, context.getString(R.string.action_share)).apply {
|
|
|
+ flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
|
|
}
|
|
|
}
|