Android 桌面图标长按快捷菜单
生活随笔
收集整理的這篇文章主要介紹了
Android 桌面图标长按快捷菜单
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
為了更快使用APP的某個功能,在手機桌面長按圖標呼出快捷菜單
需要注意:在7.0以上的系統才支持該功能
ShortcutManagerCompat方式實現:AndroidX版本
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {List<ShortcutInfoCompat> shortcutInfoList = new ArrayList<>();ShortcutInfoCompat.Builder builder = new ShortcutInfoCompat.Builder(this,"這里設置唯一標識就可以,內容隨意");builder.setShortLabel("快捷菜單1").setIcon(IconCompat.createWithResource(this, R.mipmap.ic_launcher)).setIntent(new Intent(Intent.ACTION_MAIN, null,this,SttActivityGoogle.class));shortcutInfoList.add(builder.build());ShortcutManagerCompat.addDynamicShortcuts(this,shortcutInfoList);}ShortcutManager方式實現:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {ShortcutInfo shortcutInfo = new ShortcutInfo.Builder(this, "這里設置唯一標識就可以,內容隨意")//唯一標識id.setShortLabel("快捷菜單")//短的標簽.setLongLabel("快捷菜單123")//長的標簽.setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))//圖標.setIntent(new Intent(this, NiuHaoActivity.class))//跳轉的目標,這里我設置的是當前.build();activity.getSystemService(ShortcutManager.class).setDynamicShortcuts("這里設置list,轉換一下即可");}總結
以上是生活随笔為你收集整理的Android 桌面图标长按快捷菜单的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 搭建java开发环境
- 下一篇: Spring Security 初体验