Hello,
I want to send a file.
But the Intent doesn't send it, if I select bluetooth.
any ideas
Björn
I want to send a file.
But the Intent doesn't send it, if I select bluetooth.
any ideas
Björn
Dim i As Intent
i.Initialize(i.ACTION_SEND, "")
i.SetType("image/jpg")
i.PutExtra("android.intent.extra.STREAM",File.DirRootExternal&"/bild.jpg" )
StartActivity(i)