Hi,
I have got a button on an app so the user can click to link the download page to facebook.
Using the code below it all works fine and links the page, the problem i have is that it displays a list of all apps, i tried to set the component to com.facebook.katana so that it would use the facebook app, but it still displays all apps.
is there a way so that it shows onlt facebook, or goes directly to facebook instead of displaying all apps.
Dim i As Intent
i.Initialize(i.ACTION_SEND, "")
i.SetType("text/plain")
i.PutExtra("android.intent.extra.TEXT", "http://www.b4x.com/")
i.SetComponent("com.facebook.katana")
StartActivity(i)
Thanks