Monodroid 应用程序中的内容文件存储在哪里?
我有一个 monodroid 应用程序,其中有几个包含需要在运行时访问的配置数据的文件。我从 Monotouch 移植过来,那里有一个位于根项目目录之外的目录“Stuff”。所有文件都标记为内容。
在 monotouch 中,这些文件被复制到根目录下的子目录中,因此只需打开“Stuff/MyFile.txt”即可正常工作。在 monodroid 中,我遇到了文件未找到的异常。
Mono Droid 内容文件的基本路径是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Mono for Android(和常规 Android)中,您需要将所有这些文件放在 Assets 文件夹中,以便可以从您的应用程序访问它们:
http://mono-android.net/Documentation/Guides/Using_Android_Assets
In Mono for Android (and regular Android), you need to place all these files in the Assets folder for them to be accessible from your application:
http://mono-android.net/Documentation/Guides/Using_Android_Assets