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.
我目前正在开发一个 Android IME,我想要一个文件,我将它用作字典,所以我想读写它。
首先,如何在项目中导入这个文件?
其次,它存储在设备中的什么位置?
最后,我认为它不能被删除,对吧?
先感谢您!
如果它是一个不会被修改的文件,你可以把它放在 assets 文件夹中。用户将无法删除它,因为它是您的应用程序 (.apk) 的一部分。您可以使用以下内容阅读它,
InputStream is = getAssets().open("yourDictionaryFileName");