其他分享
首页 > 其他分享> > 如何在Android 7.1上正确创建静态App快捷方式?

如何在Android 7.1上正确创建静态App快捷方式?

作者:互联网

背景

Android 7.1现在具有称为“ AppShortcut”的新功能.在文档上,他们解释了如何创建静态和动态文档,甚至有sample app.

问题

我试用了该示例,但我注意到当我单击静态应用程序快捷方式时,它显示了一个吐司“未安装应用程序”.

enter image description here

查看代码,我发现了一个可疑的配置(在“ shortcuts.xml”文件中):

<shortcuts xmlns:android="http://schemas.android.com/apk/res/android" >
    <shortcut
        android:shortcutId="add_website"
        android:icon="@drawable/add"
        android:shortcutShortLabel="@string/add_new_website_short"
        android:shortcutLongLabel="@string/add_new_website"
        >
        <intent
            android:action="com.example.android.appshortcuts.ADD_WEBSITE"
            android:targetPackage="com.example.android.appshortcuts"
            android:targetClass="com.example.android.appshortcuts.Main"
            />
    </shortcut>
</shortcuts>

它看起来不太好,因为应用程序中没有任何东西具有“ ADD_WEBSITE”的意图动作.

动态快捷方式可以正常使用(可以通过正常启动MainActivity添加).

我尝试了什么

所以我认为这应该改变.我试图创建一个新的活动并更改此配置以使其与活动(action和targetCalss)匹配,但是由于某些原因,我仍然得到了相同的吐司.

问题

代码中可能有什么问题?应该修改什么来解决它?

解决方法:

很奇怪,但是您可以通过更改来解决此问题
android:targetPackage =“ com.example.android.shortcutsample”
(与applicationid相同)或
applicationId“ com.example.android.appshortcuts”(与包名称相同).

标签:android-7-1-nougat,android,app-shortcut
来源: https://codeday.me/bug/20191026/1937566.html