标签:
获取menu_title的String值,但发现这样写报错,原因R.string.menu_title是int类型的,可是通过以下方式确可以获取。
TextView TV =
new
TextView(
this
);
TV.setText(R.string.menu_about_content);
R.string获取的是数字或者R.integer数字不对的问题
原文地址:http://www.cnblogs.com/netcorner/p/4628498.html