我的Android 7.1.1新快捷方式存在一些問題。Android動態快捷方式圖標
第二個drawable沒有資源ID。這裏是圖片和代碼片段。
private void createShortcuts(String deviceValue, String tablequery, int pos, String devImage, int index) {
ShortcutManager shortcutManager = mActivity.getSystemService(ShortcutManager.class);
if (index == 0) {
List<ShortcutInfo> scInfo = shortcutManager.getDynamicShortcuts();
Bundle b = new Bundle();
b.putInt("position", pos);
b.putString("table", tablequery);
b.putString("device", devImage);
String add = deviceValue + "_" + tablequery;
ShortcutInfo shortcut = new ShortcutInfo.Builder(mActivity, add)
.setShortLabel(deviceValue) // Shortcut Icon tab
.setLongLabel(deviceValue) // Displayed When Long Pressing On App Icon
.setIcon(Icon.createWithResource(mActivity, R.drawable.ic_shortcut_phone))
.setIntents(new Intent[]{
new Intent(Intent.ACTION_MAIN, Uri.EMPTY, mActivity, MainActivity.class).setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK),
new Intent(Intent.ACTION_DEFAULT, Uri.EMPTY, mActivity, Device_Detail_Activity.class).putExtras(b)
})
.build();
scInfo.add(shortcut);
shortcutManager.setDynamicShortcuts(scInfo);
} else if (index == 1) {
String remove = deviceValue + "_" + tablequery;
shortcutManager.removeDynamicShortcuts(Arrays.asList(remove));
}
}
我在做什麼錯?
您在有三個應用程序的快捷方式屏幕截圖。您的代碼被硬連線以始終使用相同的資源。所以,你的第一個和第三個應用程序快捷方式應該有相同的圖標......但他們不這樣做,更不用說第二個問題了。如果您一直在更改您的應用程序,並且您擁有出色的動態應用程序快捷方式,則可能需要卸載並重新安裝應用程序,或者強制您的代碼重新構建所有這些動態應用程序快捷方式,然後查看是否有幫助。 – CommonsWare
Nope已經嘗試我有2動態和一個靜態快捷方式 –