微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为什么错误:(2)在Android7中创建shourtcut时,在’android’包中找不到属性’shortcutShortLabel’的资源标识符?

当我创建快捷方式时,请参阅developer.android.com,
我写的代码如下

<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
    android:enabled="true"
    android:icon="@drawable/share"
    android:shortcutId="search"
    android:shortcutShortLabel="@string/recommend_us"
    android:shortcutLongLabel="@string/recommend_to_friend"
    android:shortcutdisabledMessage="@string/bind_unbound">
    <intent
        android:action="android.intent.action.VIEW"
        android:targetPackage="com.example.myapplication"
        android:targetClass="com.yidian.news.ui.search.SearchChannelActivity" />
</shortcut>
<!-- Specify more shortcuts here. -->

一个简单的.但是当我构建项目时,出现错误消息说

错误:(2)在’android’包中找不到属性’shortcutId’的资源标识符

错误:(2)在’android’包中找不到属性’shortcutShortLabel’的资源标识符

错误:(2)在’android’包中找不到属性’shortcutLongLabel’的资源标识符
错误:(2)在’android’包中找不到属性’shortcutdisabledMessage’的资源标识符

这是为什么

升级所有Android SDK&工具

解决方法:

快捷方式需要Android 7.1.即API级别25

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐