是否可以将两个字符串资源合并为一个?仅使用资源文件,而不是任何Java/Kotlin代码。
例如,对于以下字符串资源:
<string name="string_one">Lets test the %s str</string>
<string name="string_two">Second</string>
我想创造一个新的
<string name="combined_string">${string_one} ${string_two}</string>
其最终显示应为:测试第二个str
1条答案
按热度按时间8gsdolmq1#
无需编写任何Java或Kotlin代码,那么Android Stem库可能会帮助您。
请按照以下步骤连接两个字符串资源:
id 'com.likethesalad.stem' version '2.4.1' apply false
plugins {id 'com.likethesalad.stem'}
classpath "com.likethesalad.android:stem-plugin:2.4.1"
apply plugin: 'com.likethesalad.stem'
然后在你想要的地方使用string_two,你会得到输出:* * 测试第二个str**
任务运行后,现在您将能够访问“resolved”字符串,您将看到占位符已被实际引用的值替换。
使用Android Step Gragle Plugin作为参考。