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 SQLite,我想将我所有的静态查询(创建、删除、更新)放入一个特定的文件中(我讨厌 sql 与 java 代码合并)。所以,我想创建一个名为 query.xml 的文件并将其用作 string.xml
context.getString(R.query.MY_STATIC_QUERY)
但我认为这是不可能的。
有办法做到这一点吗?(或类似的东西?)
您可以做的一件事..您可以将所有查询放在属性文件中,并在需要时从属性文件中读取。