最近很是头痛的就是项目带回家做的时候。导入各种问题。自从升级23以后。
生成的带appcompat_v7包。copy时不论是新建还是导入这个包,项目都会报错。
网上的方法试了各种clean各种fix等等。
今天研究了下报错的布局文件。个人建议。不喜勿喷
ps:我把布局换成了android自带的。对于appcompat_v7兼容的,实在是无力解决
-
-
查看 res/values/styles.xml 下的报错点。
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
把这个改成
<style name="AppBaseTheme" parent="android:Theme.Light">
-
一波未平。一波又起
路径: res/values-11/styles.xml
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
把这个改成
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
路径: res/values-14/styles.xml
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
把这个换成
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
-
最后及时main.xml了。这要看你item 怎么写的了
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never"/>
把这个中的app换成android
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
android:showAsAction="never"/>
-
5等读完workspace后R文件还没出来的clean一下就好了
希望你们也ok