showAsAction当不使用支持库

showAsAction当不使用支持库

本文介绍了错误:应采用Android:showAsAction当不使用支持库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的应用程序,紧凑的支持库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当不使用支持库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 03:58