N Nyptop Active Member Licensed User Longtime User Dec 3, 2011 #1 Hello, Could anybody help me using an edittext to search through the app and then the internet? Thanks, Neil
Hello, Could anybody help me using an edittext to search through the app and then the internet? Thanks, Neil
vb1992 Well-Known Member Licensed User Longtime User Dec 3, 2011 #2 Look at this for the list of packages Getting a list of apps that support a particular file type Basic4android - Phone Then you could look at making an intent to Google Search dim yourword as string yourword = "apples" Dim i As Intent i.Initialize(i.ACTION_VIEW, "http://www.google.com/#q=" & yourword) Upvote 0
Look at this for the list of packages Getting a list of apps that support a particular file type Basic4android - Phone Then you could look at making an intent to Google Search dim yourword as string yourword = "apples" Dim i As Intent i.Initialize(i.ACTION_VIEW, "http://www.google.com/#q=" & yourword)