我使用getString()
从 string.xml 变成字符串。在我的课堂上(非活动)不起作用:
- context.getResources().getString()
- getResources().getString()
- context.getResources().getString()
我如何获得这个类的字符串?
public class myClass{
public String[] myInfo(String ID) {
String myString = getRessources().getString(R.string.myString);
};
}