在Titanium中,我想打开存储在资源文件夹中的pdf文件,onclick事件应该在adobe或我的移动设备上已安装的任何客户端上打开
答案 0 :(得分:2)
你可以使用意图打开pdf for android和iphone你可以使用webview。
var strFileName = 'test.pdf';
var f = Ti.Filesystem.getFile(Ti.Filesystem.resourcesDirectory, strFileName);
Ti.Android.currentActivity.startActivity(Ti.Android.createIntent({
action : Ti.Android.ACTION_VIEW,
type : 'application/pdf',
data : f.getNativePath()
}));