Android app that just points to a URL -
if build website designed , developed android or droid, possible make app directly point url? or not considered app because open in droid browser etc...
you can't create link in android - you'd have make app automatically opens browser , goes specified url when opened.
something in oncreate
:
intent browserintent = new intent("android.intent.action.view", uri.parse("http://www.google.com")); startactivity(browserintent);
Comments
Post a Comment