android:showAsAction报错的解决办法

    在菜单的配置中使用android:showAsAction标签一直报如下的错误提示Should use app:showAsAction with the appcompat library with xmlns:app="http://schemas.android.com/apk/res-auto" less... (Ctrl+F1),按下Ctrl+F1出现如下解释: 
    When using the appcompat library, menu resources should refer to the showAsAction in the app: namespace, not the android: namespace.  Similarly, when not using the appcompat library, you should be using the android:showAsAction attribute.
    由此可以知道showAsAction在app: namespace下,而不是android: namespace下,于是将android:showAsAction改为app:showAsAction,同时引入xmlns:app="http://schemas.android.com/apk/res-auto" 一个完整的xml例子如下:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto">
    <item
            android:id="@+id/action_scan"
            android:title="扫码"
            android:icon="@drawable/ic_action_scan"
            app:showAsAction="ifRoom"/>
    <item
            android:title="refresh"
            android:icon="@drawable/ic_action_refresh"
            app:showAsAction="ifRoom"
            android:id="@+id/action_refresh"/>
</menu>
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值