我的应用有 minSdk = 21 和 targetSdk = 26
我想设置应用程序快捷方式
我已将<meta-data>
标签添加到应用程序启动时启动的第一个活动。
<activity android:name=".SignInActivity"
android:theme="@style/SubscriptionsTheme.NoActionBar">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
<meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts"/>
</activity>
然后我创建了xml-v25
目录并在其中创建了这个shortcuts.xml
文件:
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android" >
<shortcut
android:shortcutId="test"
android:icon="@drawable/plus"
android:shortcutShortLabel="test"
android:shortcutLongLabel="long test" >
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.xxxxx.xxxxx.xxxxx"
android:targetClass="com.xxxxx.xxxxx.xxxxxx.main" />
</shortcut>
</shortcuts>
当我尝试构建应用程序时,出现以下错误:
错误:错误:“长测试”与属性 android:shortcutLongLabel (attr) 引用不兼容。错误:错误:“测试”与属性 android:shortcutShortLabel (attr) 引用不兼容。错误:'long test' 与属性 android:shortcutLongLabel (attr) 引用不兼容。