最近写安卓代码的时候Eclipse报错:Open quote is expected for attribute "name" associated with an element type "item".
错误代码:<style name="AppTheme" parent="AppBaseTheme">
<item name=android:windowNoTitle>true</item>
<item name=android:windowFullscreen>true</item>
<item name=android:windowBackground>@drawable/bg</item>
</style>
查阅很久,试了一些论坛上的方法还是没用,包括新建xml文件,改item格式,还有/的添加删除等,后来给加了引号才解决了问题...
改后代码:<style name="AppTheme" parent="AppBaseTheme">
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowBackground">@drawable/bg</item>
</style>
希望能给大家带来帮助