I want to make a button that can share the content (sms, email, facebook...). I tried these code but failed, please help.
B4X:
Dim intent1 As Intent
Intent1.Initialize(Intent1.ACTION_SEND, "")
Intent1.SetType("plain/text")
Intent1.PutExtra("text", Content.Text)
StartActivity(Intent1)