Android
ShortcutManager
수색…
동적 실행기 바로 가기
ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);
ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "id1")
.setShortLabel("Web site") // Shortcut Icon tab
.setLongLabel("Open the web site") // Displayed When Long Pressing On App Icon
.setIcon(Icon.createWithResource(context, R.drawable.icon_website))
.setIntent(new Intent(Intent.ACTION_VIEW,
Uri.parse("https://www.mysite.example.com/")))
.build();
shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut));
다음을 호출하여 모든 동적 바로 가기를 쉽게 제거 할 수 있습니다. -
shortcutManager.removeAllDynamicShortcuts();
기존 Dynamic Shorcuts를 다음과 같이 업데이트 할 수 있습니다.
shortcutManager.updateShortcuts(Arrays.asList(shortcut);
setDynamicShortcuts(List)
는 동적 바로 가기의 전체 목록을 다시 정의하는 데 사용되며, addDynamicShortcuts(List)
는 동적 바로 가기의 기존 목록에 동적 바로 가기를 추가하는 데 사용됩니다
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow