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.
こんにちは、.java ファイルに触れずに、xml コードの文字列値を変更する方法があるかどうか疑問に思っています。
たとえば、strings.xmlにある場合
<string name="title"> This is my title</string>
main.xml ファイル内で変更できる場合 値を持つ文字列: This is my title
文字列の 3 番目の単語を太字にすることの意味
ありがとうございました
あなたのstrings.xmlファイルで
strings.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="title"> This is <b>my</b> title</string> </resources>