Android eclipse遇见res->values->styles xml报错

来源:互联网 发布:java 视频播放 编辑:程序博客网 时间:2024/06/04 19:09

1.values下的    styles xml报错

<style name="AppBaseTheme" parent="Theme.AppCompat.Light">报错

     <style name="AppBaseTheme" parent="android:Theme.Light">
2. values-11       styles xml报错
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">报错
 <style name="AppBaseTheme" parent="android:Theme.Holo.Light">
3.values-14      styles xml报错
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">报错

<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">

4.menu    main.xml报错
<item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:title="@string/action_settings"
        app:showAsAction="never"/>
报错
<item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:title="@string/action_settings"
        android:showAsAction="never"/>
将app换成android就可以了
2 0
原创粉丝点击