Good Morning to all
how can i take the log of the one intent?
like a webview page finish
here is a code of i m using the intent
i tryed this but dont work
i tryed make a log(i) dont work too =(
have a way to log the current url?
if user change url show in the log too *-*
thx
how can i take the log of the one intent?
like a webview page finish
here is a code of i m using the intent
B4X:
Sub botaoface_Click
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)
End Sub
i tryed this but dont work
B4X:
Sub botaoface_Click
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)
Dim pm As PackageManager
For Each cn As String In pm.QueryIntentActivities( i)
Log(cn)
Next
End Sub
i tryed make a log(i) dont work too =(
have a way to log the current url?
if user change url show in the log too *-*
thx
Last edited: