前言
本文主要針對(duì)文章Create shortcuts中動(dòng)態(tài)創(chuàng)建桌面快捷方式的解釋和例子。在8.0系統(tǒng)中,創(chuàng)建桌面快捷方式的廣播com.android.launcher.action.INSTALL_SHORTCUT
不再生效,創(chuàng)建桌面快捷方式需要用另外的方法。由于文章中沒有詳細(xì)的例子而且表達(dá)不是很清楚,筆者也一頭霧水,經(jīng)過了多方的嘗試涧郊,最后才明白其中的意思,希望能給同樣遇到困惑的人一點(diǎn)幫助眼五。轉(zhuǎn)載請(qǐng)注明來源「Bug總柴」
主動(dòng)創(chuàng)建pinned shortcuts
主動(dòng)創(chuàng)建pinned shortcuts的意思是可以通過代碼讓用戶選擇是否需要在桌面快捷方式妆艘。
/**
* 這里用ShortcutManagerCompat是因?yàn)镾hortcutManager的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());
}
}
運(yùn)行這段代碼后,會(huì)有這樣的提示給到用戶如下圖:
當(dāng)用戶點(diǎn)擊【添加】后會(huì)在桌面顯示快捷方式看幼,不過現(xiàn)在的快捷方式都帶了一個(gè)下標(biāo)如下圖:
通過桌面小部件方式添加快捷方式
這種方式屬于用戶通過添加桌面小部件方式手動(dòng)添加批旺,我們需要?jiǎng)?chuàng)建一個(gè)activity來表明我們的應(yīng)用有這樣的快捷方式小部件,并且處理添加的行為桌吃。
// 在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中創(chuàng)建快捷方式:
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();
}
}
}
再次運(yùn)行代碼之后朱沃,可以在系統(tǒng)添加桌面小部件的地方看到有我們創(chuàng)建的小部件,這一個(gè)時(shí)候就可以拖動(dòng)它到桌面了:)