1,将Android中xml文件中有的字符串,根据string转换成资源id:
2,将R.string.***,字符串资源id转换成字符串
Resources res = TouchDeomActivity.this.getResources();
int titleid=res.getIdentifier(title,//需要转换的资源名称
"string", //资源类型
"com.spring.sky.cycle.touch");//R类所在的包名
2,将R.string.***,字符串资源id转换成字符串
String a=context.getString(resId);