Yes, the app received this intent from a Browser (chrome) Share... The code is:
B4X:
If IsRelevantIntent(Activity.GetStartingIntent) Then
Dim in As Intent = Activity.GetStartingIntent
Dim lin As String = in
ToastMessageShow(lin,True)
end if
Dim in As Intent = Activity.GetStartingIntent
Dim Url1 As String = in.GetExtra("android.intent.extra.TEXT")
A very interesting tip. Pausing the code and checking the value of the intent (mouse over), or using the method getdata, will give the keys from a specific intent extras... This will save #A LOT# of time researching in Android Developers forum...