主屏幕快捷应用未安装

3

我发现了一段创建主屏幕快捷方式的代码,它可以工作,但是当我在主屏幕上点击它时,它会显示:应用程序未安装。需要帮助吗?

我的代码:

        Intent shortcutIntent;
    shortcutIntent = new Intent();
    shortcutIntent.setComponent(new ComponentName(
            getApplicationContext().getPackageName(), ".GetQuoteActivity"));

    shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

    final Intent putShortCutIntent = new Intent();
    putShortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,
            shortcutIntent);

    // Sets the custom shortcut's title
    putShortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,  "Get Quote");
    putShortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(
            GetQuoteActivity.this, R.drawable.ic_launcher));
    putShortCutIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
    sendBroadcast(putShortCutIntent);
}

AndroidManifest :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.files.getquote"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="7" />

      <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"></uses-permission>

<application android:icon="@drawable/ic_launcher"  android:label="@string/app_name" >
        <activity 
            android:name=".GetQuoteActivity" 
            android:theme="@android:style/Theme.NoTitleBar"
            >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest
1个回答

阿里云服务器只需要99元/年,新老用户同享,点击查看详情
2

有两种可能性:

  1. Change to this:

    shortcutIntent.setComponent(new ComponentName(
        getApplicationContext().getPackageName(), GetQuoteActivity.class));
    
  2. Use this code to create the shortcut:

    Intent shortcutIntent = new Intent (this, YourActivity.class);      
    Intent addIntent = new Intent(); 
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Title"); 
    addIntent.putExtra("duplicate", false); 
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this, R.drawable.icon)); 
    
    sendBroadcast(addIntent);
    

绝对完美,我想放弃你,但没有足够的要求。所以只标记为完成 :) - George Simon
还有一个问题,当我多次点击应用程序时,它总是显示快捷应用程序名称已创建,是否可能只显示一次? - George Simon
1
应用程序未安装,如何修复? - Abdul Wahab

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,