android导入项目出现style错误,menu错误
Posted 不积跬步-无以至千里
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android导入项目出现style错误,menu错误相关的知识,希望对你有一定的参考价值。
android导入项目出现style错误,menu错误
style
//查看 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">
meun
No resource identifier found for attribute ‘showAsAction‘ in package ‘android‘
运行一个项目时在一个menu.xml文件item属性android:showAsAction 报错 No resource identifier found for attribute ‘showAsAction‘ in package ‘android‘
google了下,老外说是版本问题,showAsAction was added in API level 11要将API提升到11,添加 "android-support-v7-appcompat.jar" 到Android库( Private Libraries)
android:showAsAction = "never"
当你的应用程序目标设为蜂巢平台时,你可以利用Action Bar部件提供的全部功能,将你的选项菜单项放在Action Bar的右上角,对用户来说使用更方便,控制该行为的主菜单项属性是android:showAsAction。
这个属性可接受的值有:
1、always:这个值会使菜单项一直显示在Action Bar上。
2、ifRoom:如果有足够的空间,这个值会使菜单项显示在Action Bar上。
3、never:这个值使菜单项永远都不出现在Action Bar上。
4、withText:这个值使菜单项和它的图标,菜单文本一起显示。
不过这里没有用到这高版本,此处删除这个属性就OK了。
以上是关于android导入项目出现style错误,menu错误的主要内容,如果未能解决你的问题,请参考以下文章
Android 项目导入Android Studio 总是会出现错误: Plugin with id 'com.android.application' not found