前言

本文主要针对文章Create shortcuts中动态创立桌面快捷方法的解释和比如。在8.0体系中,创立桌面快捷方法的播送com.android.launcher.action.INSTALL_SHORTCUT不再收效,创立桌面快捷方法需要用另外的办法。因为文章中没有具体的比如而且表达不是很清楚,笔者也一头雾水,经过了多方的尝试,最后才理解其间的意思,希望能给相同遇到困惑的人一点协助。转载请注明来历「Bug总柴」

自动创立pinned shortcuts

自动创立pinned shortcuts的意思是可以经过代码让用户挑选是否需要在桌面快捷方法。

/**
 * 这儿用ShortcutManagerCompat是因为ShortcutManager的minsdkversion要求至少是25
 */
private void createShortCut() {
    if (ShortcutManagerCompat.isRequestPinShortcutSupported(this)) {
        ShortcutInfoCompat shortcut = new ShortcutInfoCompat.Builder(this, "id1")
                .setShortLabel("Website")
                .setLongLabel("Open the website")
                .setIcon(IconCompat.createWithResource(this, R.drawable.ic_logo_app))
                .setIntent(new Intent(Intent.ACTION_VIEW,
                    Uri.parse("https://www.mysite.example.com/")))
                    .build();
        Intent pinnedShortcutCallbackIntent = ShortcutManagerCompat.createShortcutResultIntent(this, shortcut);
        PendingIntent successCallback = PendingIntent.getBroadcast(this, /* request code */ 0,
                pinnedShortcutCallbackIntent, /* flags */ 0);
        ShortcutManagerCompat.requestPinShortcut(this, shortcut, successCallback.getIntentSender());
    }
}

运行这段代码后,会有这样的提示给到用户如下图:

Android-create-pinned-shortcut创建桌面快捷方式
当用户点击【增加】后会在桌面显示快捷方法,不过现在的快捷方法都带了一个下标如下图:
Android-create-pinned-shortcut创建桌面快捷方式

经过桌面小部件方法增加快捷方法

这种方法归于用户经过增加桌面小部件方法手动增加,咱们需要创立一个activity来表明咱们的应用有这样的快捷方法小部件,而且处理增加的行为。

// 在AndoidManifest文件中增加activity
<activity android:name=".activity.AddShortcutActivity">
    <intent-filter>
        <action android:name="android.intent.action.CREATE_SHORTCUT"/>
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

然后在Activity中创立快捷方法:

public class AddShortcutActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_add_shortcut);
        Toast.makeText(this, "add shortcut", Toast.LENGTH_SHORT).show();
        if (ShortcutManagerCompat.isRequestPinShortcutSupported(this)) {
            ShortcutInfoCompat shortcut = new ShortcutInfoCompat.Builder(this, "id1")
                    .setShortLabel("Website")
                    .setLongLabel("Open the website")
                    .setIcon(IconCompat.createWithResource(this, R.drawable.ic_logo_app))
                    .setIntent(new Intent(Intent.ACTION_VIEW,
                            Uri.parse("https://www.mysite.example.com/")))
                    .build();
            Intent pinnedShortcutCallbackIntent = ShortcutManagerCompat.createShortcutResultIntent(this, shortcut);
            setResult(RESULT_OK, pinnedShortcutCallbackIntent);
            finish();
        }
    }
}

再次运行代码之后,可以在体系增加桌面小部件的当地看到有咱们创立的小部件,这一个时候就可以拖动它到桌面了:)

Android-create-pinned-shortcut创建桌面快捷方式