某處我閱讀了如何在XML文檔中使用變量。他們說這很簡單,我想是的。我在Android的strings.xml文件中成功地使用了它。我整天都在使用它,直到android突然停下來解析它並停下來將它當作一個變量來對待它。strings.xml中的Android變量
我用它以這種方式:
<resources>
<string name="some_string">string1</string>
<string name="another_string"> {$some_string} trolololo </string>
</resources>
和在Java訪問它通過:getApplicationContext()的getString(R.strings.another_string);
getApplicationContext().getString(R.strings.another_string);
在我用來接收字符串,如輸出:
string1 trolololo
,現在我只收到:
{$some_string} trolololo
沒有人有任何的想法有什麼不好?我知道Android的XML可能與標準的XML不同,但它用於工作。 Awww ...感謝您的任何建議。
清理完項目後再試,再次運行。 – 2012-07-16 20:11:08
嗯......我想知道,如果這也適用於其他類型,如int或int [] – Fraggles 2014-02-11 12:32:55