解决办法:
1.在activity里:
方法一:this.getString(R.string.resource_name);
方法二:getResources().getString(R.string.resource_name);
2.在其他java文件(必须有Context或aplication)
方法一:context.getString(R.string.resource_name);
方法二:application.getString(R.string.resource_name);
原文链接:https://www.f2er.com/xml/296577.html