国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android O添加桌面快捷方式的示例

2019-10-22 18:17:02
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

手機(jī)升級(jí)到安卓O后,突然發(fā)現(xiàn)創(chuàng)建快捷方式的功能失效了,查詢(xún)一番后發(fā)現(xiàn):安卓O要使用ShortcutManager來(lái)創(chuàng)建快捷方式。

安卓N及以下版本:

Intent addShortcutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");//"com.android.launcher.action.INSTALL_SHORTCUT"// 不允許重復(fù)創(chuàng)建addShortcutIntent.putExtra("duplicate", false);// 經(jīng)測(cè)試不是根據(jù)快捷方式的名字判斷重復(fù)的// 應(yīng)該是根據(jù)快鏈的Intent來(lái)判斷是否重復(fù)的,即Intent.EXTRA_SHORTCUT_INTENT字段的value// 但是名稱(chēng)不同時(shí),雖然有的手機(jī)系統(tǒng)會(huì)顯示Toast提示重復(fù),仍然會(huì)建立快鏈// 屏幕上沒(méi)有空間時(shí)會(huì)提示// 注意:重復(fù)創(chuàng)建的行為MIUI和三星手機(jī)上不太一樣,小米上似乎不能重復(fù)創(chuàng)建快捷方式// 名字addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "網(wǎng)絡(luò)設(shè)置");// 圖標(biāo)addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,  Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_perm_data_setting_black_24dp));// 設(shè)置關(guān)聯(lián)程序Intent launcherIntent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);//設(shè)置網(wǎng)絡(luò)頁(yè)面intent// 設(shè)置關(guān)聯(lián)程序// 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);// 發(fā)送廣播sendBroadcast(addShortcutIntent);

安卓O:

ShortcutManager scm = (ShortcutManager) getSystemService(SHORTCUT_SERVICE);Intent launcherIntent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);//設(shè)置網(wǎng)絡(luò)頁(yè)面intentShortcutInfo si = new ShortcutInfo.Builder(this, "dataroam")  .setIcon(Icon.createWithResource(this, R.drawable.ic_perm_data_setting_black_24dp))  .setShortLabel("網(wǎng)絡(luò)設(shè)置")  .setIntent(launcherIntent)  .build();assert scm != null;scm.requestPinShortcut(si, null);

那如果要兩者兼顧呢,則可以如下這樣寫(xiě):

//添加快捷方式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);//設(shè)置網(wǎng)絡(luò)頁(yè)面intent  ShortcutInfo si = new ShortcutInfo.Builder(this, "dataroam")    .setIcon(Icon.createWithResource(this, R.drawable.ic_perm_data_setting_black_24dp))    .setShortLabel("網(wǎng)絡(luò)設(shè)置")    .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"  // 不允許重復(fù)創(chuàng)建  addShortcutIntent.putExtra("duplicate", false);// 經(jīng)測(cè)試不是根據(jù)快捷方式的名字判斷重復(fù)的  // 應(yīng)該是根據(jù)快鏈的Intent來(lái)判斷是否重復(fù)的,即Intent.EXTRA_SHORTCUT_INTENT字段的value  // 但是名稱(chēng)不同時(shí),雖然有的手機(jī)系統(tǒng)會(huì)顯示Toast提示重復(fù),仍然會(huì)建立快鏈  // 屏幕上沒(méi)有空間時(shí)會(huì)提示  // 注意:重復(fù)創(chuàng)建的行為MIUI和三星手機(jī)上不太一樣,小米上似乎不能重復(fù)創(chuàng)建快捷方式  // 名字  addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "網(wǎng)絡(luò)設(shè)置");  // 圖標(biāo)  addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,    Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_perm_data_setting_black_24dp));  // 設(shè)置關(guān)聯(lián)程序  Intent launcherIntent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);//設(shè)置網(wǎng)絡(luò)頁(yè)面intent  // 設(shè)置關(guān)聯(lián)程序//  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);  // 發(fā)送廣播  sendBroadcast(addShortcutIntent); }}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到Android開(kāi)發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 登封市| 克拉玛依市| 义乌市| 抚远县| 汝州市| 子长县| 南康市| 安远县| 开江县| 宜良县| 张掖市| 江油市| 师宗县| 大丰市| 绩溪县| 巩义市| 四子王旗| 抚宁县| 甘肃省| 葫芦岛市| 高尔夫| 太原市| 平原县| 合川市| 会宁县| 时尚| 珲春市| 平江县| 南郑县| 美姑县| 峡江县| 清丰县| 宁都县| 台中市| 凤凰县| 镇远县| 拉孜县| 伊通| 平凉市| 灵武市| 蒙自县|