Android Question search the internet?

Mrjoey

Active Member
Licensed User
Longtime User
Hey i would like to include a search feature in my music app , searching for music files over the internet by title or whatever and displays a list of found items and their url , is that possible? Thank u.
 

Mrjoey

Active Member
Licensed User
Longtime User
You can use this intent:
B4X:
Dim i As Intent
i.Initialize("android.intent.action.WEB_SEARCH", "")
i.PutExtra("query", "Basic4android")
StartActivity(i)
Thank u Mr Erel , i gave it a try and worked perfectly , but what i need is typing a text in a textbox , pressing on search button will fill a list of all found items , is that possible?
 
Upvote 0
Top