黑莓打开文件
我使用浏览器打开 pdf 文件,但我想使用常规文件管理器以便通过第三方应用程序打开该文件。我该怎么做?
BrowserSession page = Browser.getDefaultSession();
page.displayPage("file:///SDCard/BlackBerry"+Integer.parseInt(tab[4])+".pdf");
I use the browser to open a pdf file, but I want to use the regular file manager in order to open the file with a third party application. How do I do that?
BrowserSession page = Browser.getDefaultSession();
page.displayPage("file:///SDCard/BlackBerry"+Integer.parseInt(tab[4])+".pdf");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于操作系统版本。在 OS 5 中,RIM 添加了
net.rim.device.api.ui.picker.FilePicker
类来满足您的需要。对于 5 之前的操作系统,您必须实现自己的屏幕才能从文件系统中选择文件。您的本地 BB SDK 应包含一个示例应用程序,通过“fileexplorerdemo”搜索以查找该示例并查看代码。It depends on OS version. In OS 5 RIM added the
net.rim.device.api.ui.picker.FilePicker
class that does what you need. For pre 5 OS you have to implement your own screen to select a file from the file-system. Your local BB SDK should contain a sample app for this, search by "fileexplorerdemo" to find that sample and to see the code.