问题描述
我使用的应用程序,紧凑的支持库V7提供支持棒棒糖在我的应用程序。我可以使它正常工作。当我的动作条没有显示菜单项的图标。
I'm using app compact support library v7 for providing support of lollipop in my app. I was able to make it work perfectly. When my actionbar not showing menu items as icon.
我跟此链接使它工作。
以下是我的 menu.xml文件
I have followed this link to make it work .
Following is my menu.xml :
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/contact_add"
android:icon="@drawable/ic_btn_add_contact"
android:title="@string/add"
app:showAsAction="always"/>
<item
android:id="@+id/contact_delete"
android:icon="@drawable/ic_btn_add_contact"
android:showAsAction="never"
android:title="@string/delete"/>
</menu>
不过我收到以下错误:应采用Android:showAsAction当不使用appcompat库
我在做什么错???
推荐答案
我在下面的方式解决了这个:
I solved this in following manner :
到构建路径/配置构建路径
和订单和出口
标签,
check the support jars and uncheck Android Dependencies.
这样做对支持库 Android的支持-V7-appcompat
也。然后,只需洁净
项目和错误就解决了。
Do this for support library android-support-v7-appcompat
also. Then just clean
your project and error is solved.
这里是从哪里得到这个链接。
Here is the link from where I get this.
这篇关于错误:应采用Android:showAsAction当不使用支持库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!