Is it possible to do string substitution in Android resource XML files directly?

回眸只為那壹抹淺笑 提交于 2019-11-30 16:53:04

问题


In my android app, I have a large string resource xml file. I want to make reference and reuse declared resources values within String values. Is it possible to have the R class resolve referenced values (a la @string/db_table_name)?

<resources>
<string name="db_table_name">tbl_name</string>
<string name="ddl">create table @string/tbl_name</string>
</resources>

Is there a way of doing this. In regular Java world, some tools use ${varname} expression to resolve reference. Can this be done at all in Android?


回答1:


Add a %s to your second resource string (the one that you want to be dynamic) where you want it to be modified. i.e.,

<resources>
<string name="db_table_name">tbl_name</string>
<string name="ddl">create table %s</string>
</resources>

and in your code use getString() to work the magic,

getString(R.string.ddl, getString(R.string.db_table_name));



回答2:


It's indeed possible.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE resources [
  <!ENTITY appname "MyAppName">
  <!ENTITY author "MrGreen">
]>

<resources>
    <string name="app_name">&appname;</string>
    <string name="description">The &appname; app was created by &author;</string>
</resources>

You can even define your entity globaly e.g:

res/raw/entities.ent:

  <!ENTITY appname "MyAppName">
  <!ENTITY author "MrGreen">

res/values/string.xml:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE resources [
    <!ENTITY % ents SYSTEM "./res/raw/entities.ent">
    %ents;   
]>

<resources>
    <string name="app_name">&appname;</string>
    <string name="description">The &appname; app was created by &author;</string>
</resources>



回答3:


Well, I don't think this is possible. Because once the resources are allocated android won't allow us to change them dynamically in the air. Instead you can try having your Strings in a separate class and change them as you run through your code.




回答4:


Yes, it is possible without writing any Java/Kotlin code, only XML, by using this small library I created which does so at buildtime: https://github.com/LikeTheSalad/android-string-reference

Usage

Based on your example, you'd have to set your strings like this:

<resources>
  <string name="db_table_name">tbl_name</string>
  <string name="template_ddl">create table ${db_table_name}</string>
</resources>

And then, after building your project, you'll get:

<resources>
  <string name="ddl">create table tbl_name</string>
</resources>


来源:https://stackoverflow.com/questions/6679518/is-it-possible-to-do-string-substitution-in-android-resource-xml-files-directly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!