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.
您好我想知道是否有一种方法可以更改我的 xml 代码中的字符串值而不接触 .java 文件
例如,如果我在 strings.xml 中有
<string name="title"> This is my title</string>
如果我可以在 main.xml 文件中更改具有值的字符串:这是我的标题
意思是让我的字符串的第三个单词加粗
谢谢
在你的strings.xml文件中
strings.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="title"> This is <b>my</b> title</string> </resources>