TsubasaOzora
New Member
Hi,
i spend some time looking back and forward in this forum.. and still i cant get it to work.
how to share some image using intent actually ?
i can share a text using intent.. but that intent i need to write it manually
something like this work..
but if i use a file.. or i want to share image.. it doesnt work
any enlightenment ?
thanks
i spend some time looking back and forward in this forum.. and still i cant get it to work.
how to share some image using intent actually ?
i can share a text using intent.. but that intent i need to write it manually
B4X:
dim share as intent
share.Initialize(share.ACTION_SEND,"")
share.SetType("text/plain")
share.PutExtra("android.intent.extra.TEXT", mytext)
share.WrapAsIntentChooser("Share text via")
StartActivity(share)
something like this work..
but if i use a file.. or i want to share image.. it doesnt work
any enlightenment ?
thanks