我正在尝试编写一些引用bool.xml文件的代码,并引用bool中的当前值。
<bool name="enableQAurl">true</bool>
有了这个我想要能够在代码中引用这个,所以如果它设置为True它做某事,如果false做其他事情。只是一个简单的If和else语句。
任何代码引用或反馈非常感谢。
Resources res = getResources(); boolean enableQAurl = res.getBoolean(R.bool.enableQAurl);
资源:
http://developer.android.com/guide/topics/resources/more-resources.html