What do I want to do?
I would like to share the text of 2 labels by pressing on an image.
I tried this way, but only one label is shared
I would like to share the text of 2 labels by pressing on an image.
I tried this way, but only one label is shared
B4X:
Sub ImageView7_Click
Dim in As Intent
in.Initialize(in.ACTION_SEND, "")
in.PutExtra("android.intent.extra.TEXT", Label3.Text)
in.PutExtra("android.intent.extra.TEXT", Label4.Text)
in.SetType("text/plain")
in.WrapAsIntentChooser("Share Via")
StartActivity(in)
End Sub