Helooo smart people,
How would I extract the example ("television series") from this incoming intent ?
str returns empty
TIA
How would I extract the example ("television series") from this incoming intent ?
B4X:
Dim in As JavaObject = Activity.GetStartingIntent
Dim t As String = in.RunMethod("getType", Null)
If t.Contains("text") Then
Dim str As String
str=in.RunMethod("getParcelableExtra", Array("android.intent.extra.TEXT"))
End If
str returns empty
TIA