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 资源文件?例如向 string.xml 添加新字符串或向现有字符串数组添加新项目。
不,不可能动态地将值添加到资源的任何部分。
生成 apk 时,所有资源都会编译成只读二进制文件,您不能向其中添加额外数据。您必须使用内部或外部存储来存储此类数据。