Skip to content

Instantly share code, notes, and snippets.

@tonylukasavage
Created September 30, 2011 15:28
Show Gist options
  • Save tonylukasavage/1254106 to your computer and use it in GitHub Desktop.
Save tonylukasavage/1254106 to your computer and use it in GitHub Desktop.
button.addEventListener('click', function(e) {
if (tmpFile) {
var intent = Ti.Android.createIntent({
action: Ti.Android.ACTION_VIEW,
type: "application/pdf",
data: tmpFile.nativePath
});
try {
Ti.Android.currentActivity.startActivity(intent);
} catch(e) {
Ti.API.debug(e);
alert('No apps PDF apps installed!');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment