Android Question Google search within app

JdV

Active Member
Licensed User
Longtime User
Hi

How is it possible to include the contents of my app in the Google phone search as shown in the attached picture?

Screenshot_2015-03-22-16-14-16.png


Regards

Joe
 

NJDude

Expert
Licensed User
Longtime User
Hi

How is it possible to include the contents of my app in the Google phone search as shown in the attached picture?

View attachment 33019

Regards

Joe
If you just want add that search feature you could use the following intent:
B4X:
Private i As Intent

i.Initialize("android.intent.action.WEB_SEARCH", "")

i.PutExtra("query", "basic4android")

StartActivity(i)
 
Upvote 0
Top