摘要:手機升級到安卓后,突然發現創建快捷方式的功能失效了,查詢一番后發現安卓要使用來創建快捷方式。
手機升級到安卓O后,突然發現創建快捷方式的功能失效了,查詢一番后發現:安卓O要使用ShortcutManager來創建快捷方式。
安卓N及以下版本:
Intent addShortcutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");//"com.android.launcher.action.INSTALL_SHORTCUT" // 不允許重復創建 addShortcutIntent.putExtra("duplicate", false);// 經測試不是根據快捷方式的名字判斷重復的 // 應該是根據快鏈的Intent來判斷是否重復的,即Intent.EXTRA_SHORTCUT_INTENT字段的value // 但是名稱不同時,雖然有的手機系統會顯示Toast提示重復,仍然會建立快鏈 // 屏幕上沒有空間時會提示 // 注意:重復創建的行為MIUI和三星手機上不太一樣,小米上似乎不能重復創建快捷方式 // 名字 addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "網絡設置"); // 圖標 addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_perm_data_setting_black_24dp)); // 設置關聯程序 Intent launcherIntent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);//設置網絡頁面intent // 設置關聯程序 // Intent launcherIntent = new Intent(Intent.ACTION_MAIN); // launcherIntent.setClass(MainActivity.this, MainActivity.class); // launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER); addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, launcherIntent); // 發送廣播 sendBroadcast(addShortcutIntent);
安卓O:
ShortcutManager scm = (ShortcutManager) getSystemService(SHORTCUT_SERVICE); Intent launcherIntent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);//設置網絡頁面intent ShortcutInfo si = new ShortcutInfo.Builder(this, "dataroam") .setIcon(Icon.createWithResource(this, R.drawable.ic_perm_data_setting_black_24dp)) .setShortLabel("網絡設置") .setIntent(launcherIntent) .build(); assert scm != null; scm.requestPinShortcut(si, null);
那如果要兩者兼顧呢,則可以如下這樣寫:
//添加快捷方式 private void addShortcut() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { ShortcutManager scm = (ShortcutManager) getSystemService(SHORTCUT_SERVICE); Intent launcherIntent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);//設置網絡頁面intent ShortcutInfo si = new ShortcutInfo.Builder(this, "dataroam") .setIcon(Icon.createWithResource(this, R.drawable.ic_perm_data_setting_black_24dp)) .setShortLabel("網絡設置") .setIntent(launcherIntent) .build(); assert scm != null; scm.requestPinShortcut(si, null); } else { Intent addShortcutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");//"com.android.launcher.action.INSTALL_SHORTCUT" // 不允許重復創建 addShortcutIntent.putExtra("duplicate", false);// 經測試不是根據快捷方式的名字判斷重復的 // 應該是根據快鏈的Intent來判斷是否重復的,即Intent.EXTRA_SHORTCUT_INTENT字段的value // 但是名稱不同時,雖然有的手機系統會顯示Toast提示重復,仍然會建立快鏈 // 屏幕上沒有空間時會提示 // 注意:重復創建的行為MIUI和三星手機上不太一樣,小米上似乎不能重復創建快捷方式 // 名字 addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "網絡設置"); // 圖標 addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_perm_data_setting_black_24dp)); // 設置關聯程序 Intent launcherIntent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);//設置網絡頁面intent // 設置關聯程序 // Intent launcherIntent = new Intent(Intent.ACTION_MAIN); // launcherIntent.setClass(MainActivity.this, MainActivity.class); // launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER); addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, launcherIntent); // 發送廣播 sendBroadcast(addShortcutIntent); } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/68239.html
摘要:今天給手上的手機升級系統至體驗了一下新功能圖標快捷方式如下圖所示如何實現這樣的快捷方式呢官方給出的實現步驟分類圖標快捷方式分為兩種靜態快捷方式動態快捷方式靜態快捷方式是寫在文件中而動態快捷方式是在代碼中編寫實現環境要求只有及以上手機才能使用 今天給手上的Nexus6P手機升級系統至Android7.1,體驗了一下新功能:App Shortcuts(圖標快捷方式),如下圖所示: show...
閱讀 2069·2021-11-16 11:45
閱讀 569·2021-11-04 16:12
閱讀 1369·2021-10-08 10:22
閱讀 840·2021-09-23 11:52
閱讀 4128·2021-09-22 15:47
閱讀 3513·2021-09-22 15:07
閱讀 486·2021-09-03 10:28
閱讀 1730·2021-09-02 15:21