如何更改strings.xml中声明的一些图标
<resources>
...
<string name="icon_info"></string>
<string name="icon_heart"></string>
....
之后我在java中的一些源文件中使用它们
Button txt=(Button) findViewById(R.id.infotxt);
Button txt1=(Button) findViewById(R.id.hearttxt);
Typeface webfont = Typeface.createFromAsset(getAssets(), "fontawesome-webfont.ttf");
txt.setText(" " + getString(R.string.icon_info) + " ...");
txt.setTypeface(webfont);
txt1.setText(" " + getString(R.string.icon_heart) + " ...");
txt1.setTypeface(webfont);
我想将这些图标更改为我计算机上的其他图标。