styles.xml中<style name="AppBaseTheme" parent="Theme.AppCompat.Light">提示以下錯誤,這是版本問題。java
error: Error retrieving parent for item: No resource found that matches the given name android
'Theme.AppCompat.Light'.xml
解決方法:ip
在Eclipse中打開任意一個.java文件,輸入 android.R.style. 這時你會看到一個提示列表,仔細看看,再對比一下,看哪一個與原有的最接近就選擇哪一個。用將下劃線替換成"."就可了。it
將io
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">cli
改成方法
<style name="AppBaseTheme" parent="android:Theme.Light">
同理,將error
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">文件
改成
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">