我正在尝试为我的应用实施应用快捷方式,但我无法让它们发挥作用。 我的shortcut.xml:
<Shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="shortcut"
android:enabled="true"
android:icon="@drawable/ic_shortcut"
android:shortcutShortLabel="@string/shortcut_label">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example"
android:targetClass="com.example.package.Activity"/>
</shortcut>
的manifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example">
<application
android:name=".Application"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:resizeableActivity="false"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".package.Activity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/voice_search_params" />
<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
所以,我做的快捷方式与google示例相同。我可以看到并点击快捷方式,但没有任何反应。我尝试过不同的活动,更改活动地点,活动动作,参数,例如&#34; exported = true&#34;,但没有任何变化 - 在日志中我只能看到
ActivityNotFoundException:无法启动快捷方式
我的快捷方式日志和Google相机快捷方式日志之间的唯一区别是活动路径:
I / ActivityManager:START u0 {act = android.intent.action.VIEW flg = 0x1000c000 cmp = com.example / .package.Activity}
VS
I / ActivityManager:START u0 {act = android.media.action.STILL_IMAGE_CAMERA flg = 0x1000c000 cmp = com.google.android.GoogleCamera / com.android.camera.activity.CameraImageActivity}
Google cam拥有活动的完整路径,但程序包路径不同。
PS:今天尝试了谷歌样本,静态应用程序快捷方式也不适用于样本。动态应用程序快捷方式运行良好。
答案 0 :(得分:6)
除了Matin的回答之外,如果您有多种构建类型可以更改您的应用程序ID,那么它将无法正常工作。
就我而言,我的应用程序ID后缀为.debug
和.qa
。您不能引用字符串引用或使用intent
元素内的变量。
我找到了两个解决方案:
1)您将为不同的构建类型创建不同的shortcuts.xml
文件,并更新您的targetPackage
。
例如,
<intent
android:action="com.example.ACTION"
android:targetClass="com.example.MainActivity"
android:targetPackage="com.example.debug"/>
2)有一个插件允许您在XML文件中使用applicationId
变量。
答案 1 :(得分:2)
android:targetPackage
必须包含您的应用程序ID。因此,如果您已将build.gradle
中的应用ID定义为applicationId "com.my.app.id"
,则必须使用android:targetPackage="com.my.app.id"
答案 2 :(得分:0)
将活动的包名称更改为:
android:name=".Activity"
将快捷方式目标类更改为:
android:targetClass="com.example.Activity"
答案 3 :(得分:0)
我也遇到了这个问题。然后我发现android:targetClass不是正确的路径。 机器人:targetClass =&#34; com.example.camille.testappshortcuts.Main&#34; 主要是应用程序的访问权限。 也许您应该将Activity更改为其他名称,然后添加它。