Hi
I know how to share a text:
But how I can share a bitmap. I have tried:
I know how to share a text:
B4X:
mytext = "some text"
Sub share_Click
share.Initialize(share.ACTION_SEND,"")
share.SetType("text/plain")
share.PutExtra("android.intent.extra.TEXT", mytext)
share.WrapAsIntentChooser("Share text:)")
StartActivity(share)
End Sub
But how I can share a bitmap. I have tried:
B4X:
Sub share_Click
share.Initialize(share.ACTION_SEND,"")
share.SetType("image/jpeg")
share.PutExtra("android.intent.extra.stream", mypicture)
share.WrapAsIntentChooser("Share Photo:)")
StartActivity(share)
End Sub