Android Question Sharing button....

b4xscripter

Member
Licensed User
Longtime User
Hi, guys!
First of all, thank you a lot for your help and sorry for asking this question once again as I didn't find the clear tutorial.

All I want is to put the "sharing" button and when I click on it, I will get all the "social" options of of apps I have installed: whatsapp, google, facebook.....
I don't want to point to any special network. I just want to get all available options to send a text. Nothing more... How to do it?

Thanks in advance
 

b4xscripter

Member
Licensed User
Longtime User
Hi!


Awesome! That was exactly what I looked for....
Thank you!

I needed only a few to make it work:

B4X:
Sub Globals
    Private intent As INTENTID
End Sub

Sub Activity_Create(FirstTime As Boolean)
    Activity.LoadLayout("layout1")
    intent.Initialize
intent.ShareText("HOLA!!!!")
End Sub

Do we have something similar for B4I?
 
Last edited:
Upvote 0
Top