Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一个应用程序,其中一个可用功能是将文件下载到设备上然后打开,只有当它们是可以打开它的应用程序时。
我一直在浏览 API / Q&A / Google 并找不到任何有用的东西。
任何人有一个建议如何做到这一点?
谢谢!
您可以在打开文件时使用属性在列表中添加该名称并将其设置为数组,同时关闭该窗口从列表中删除并将您的数组设置为属性。
var objFileArray = Ti.App.Properties.getList('fileArray',[]); objFileArray.push('File1'); Ti.App.Properties.setList('fileArray', objFileArray);