hi i m using this intent to share on facebook
ok this works fine open my google chrome and show me option to share my web site
ok but how can i get the results of this intent?
for exemple if it is shared with sucesss
or user pressed back key
etc
have a way to know when user share or no ?
B4X:
Dim TheUrl As String
TheUrl = "http://www.ibm.com"
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "http://m.facebook.com/sharer.php?u="&TheUrl&"")
i.SetType("text/plain")
i.PutExtra("android.intent.extra.TEXT", TheUrl)
i.WrapAsIntentChooser("Escolha o navegador!")
StartActivity(i)
ok this works fine open my google chrome and show me option to share my web site
ok but how can i get the results of this intent?
for exemple if it is shared with sucesss
or user pressed back key
etc
have a way to know when user share or no ?