<style name="titlebarstyle" parent="android:Theme">
<item name="Android:windowTitleSize">38dip</item>
</style>
error: Error: No resource found that matches the given name: attr 'Android:windowTitleSize'.
------解决思路----------------------
<item name="Android:windowTitleSize">38dip</item>中,Android应该是小写的android,谢谢
------解决思路----------------------
<style name="titlebarstyle" parent="android:Theme">
<item name="android:windowTitleSize">38dip</item> 3#正解