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.
我正在尝试在 dot42 中编写我的第一个应用程序。我正在使用vs2010。如何在 dot42 项目中创建资产文件夹?我需要使用资产文件夹来复制我自己的 sqlite 数据库。
任何想法?任何帮助将不胜感激。先感谢您。
将 sqlite 数据库添加到您的 dot42 项目中。转到数据库文件的属性并将构建操作属性设置为嵌入式资源。
在源代码中,我们可以在资产列表中看到数据库文件名:
Context context = GetApplicationContext(); String[] assetList = context.GetAssets();