Android Question Google Play on Tabhost

surfer

Member
Licensed User
Longtime User
I'd like to launch the Google Play :
"
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "market://details?id=SOMETHING")
StartActivity(i)
"
on Tab of Tabhost.

How can I do it? AddTab (AddTab2) requires Layout (View) but not Intent.
Please help.
 

stevel05

Expert
Licensed User
Longtime User
You can't use intents to do that as your app will go into the background and you can't run an app inside another. You may be able to use a webview and browse the play store from there, although I haven't tried it.
 
Upvote 0

stevel05

Expert
Licensed User
Longtime User
I can't find any link or reference to a mobile site in the internet! Iv'e tried playing with the UserAgent but it doesn't seem to make any difference.
 
Upvote 0
Top