Skip to content

Instantly share code, notes, and snippets.

@minhnc
Created March 16, 2012 05:15
Show Gist options
  • Save minhnc/2048590 to your computer and use it in GitHub Desktop.
Save minhnc/2048590 to your computer and use it in GitHub Desktop.
Android Intent - Open default Browser
var intent = Ti.Android.createIntent({
action: Ti.Android.ACTION_VIEW,
data: 'http://www.cnblogs.com',
className: 'com.android.browser.BrowserActivity',
packageName: 'com.android.browser'
});
Ti.Android.currentActivity.startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment