Hello.
I using the following code in a button for share text content of the EditText1 view:
when the cursor is blinking inside EditText1 text area does not work to share
How solve this???
I using the following code in a button for share text content of the EditText1 view:
B4X:
Dim i As Intent
i.Initialize(i.ACTION_SEND, "")
i.SetType("text/plain")
i.PutExtra("android.intent.extra.TEXT",EditText1.Text)
i.WrapAsIntentChooser("Share via:")
StartActivity(i)
when the cursor is blinking inside EditText1 text area does not work to share
How solve this???