我发现在 bools.xml 中定义 bool var 有两种方法,哪一种是正确的?谢谢!
----------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="screen_small">true</bool>
<bool name="adjust_view_bounds">true</bool>
</resources>
-------------------------------------------
----------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="bool" name="api11">false</item>
</resources>
----------------------------------------