ich habe eine App geschrieben, welche URLs verarbeitet. Nun hätte ich gerne, dass wenn eine URL geteilt wird (egal aus welcher App), meine App in den vorgeschlagenen Apps auftaucht.
2.) In Activity_Create nachfolgenden Code einfügen:
B4X:
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Main") ' WICHTIG! Zuerst das LoadLayout!!!!
Dim Intent1 As Intent
Intent1 = Activity.GetStartingIntent
If Intent1.Action = "android.intent.action.SEND" Then
Log("Invoked by Share Via")
txtURL.Text = Intent1.GetExtra("android.intent.extra.TEXT") ' txtURL.Text erhält in dem Fall den geteilten Text
Else If Intent1.Action = "android.intent.action.MAIN" Then
Log("Invoked by Clicking on App")
Else
Log("Should not happen")
End If
' Hier die Logs, diese können entfernt werden.
Log("Action :"&Intent1.Action)
Log("GetExtra :"&Intent1.GetExtra("android.intent.extra.TEXT"))
Log("Extras :"&Intent1.ExtrasToString)
Log("GetData :"&Intent1.GetData)
Log("GetExtra:"&Intent1.GetExtra("android.intent.extra.TEXT"))
Log(Intent1.HasExtra("EXTRA_TEXT"))
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.