摘要:今天給手上的手機(jī)升級(jí)系統(tǒng)至體驗(yàn)了一下新功能圖標(biāo)快捷方式如下圖所示如何實(shí)現(xiàn)這樣的快捷方式呢官方給出的實(shí)現(xiàn)步驟分類(lèi)圖標(biāo)快捷方式分為兩種靜態(tài)快捷方式動(dòng)態(tài)快捷方式靜態(tài)快捷方式是寫(xiě)在文件中而動(dòng)態(tài)快捷方式是在代碼中編寫(xiě)實(shí)現(xiàn)環(huán)境要求只有及以上手機(jī)才能使用
今天給手上的Nexus6P手機(jī)升級(jí)系統(tǒng)至Android7.1,體驗(yàn)了一下新功能:App Shortcuts(圖標(biāo)快捷方式),如下圖所示:
如何實(shí)現(xiàn)這樣的快捷方式呢?
官方給出的實(shí)現(xiàn)步驟:App Shortcuts | Android Developers
分類(lèi)圖標(biāo)快捷方式(App Shortcuts)分為兩種:
Static shortcuts(靜態(tài)快捷方式)
Dynamic shortcuts(動(dòng)態(tài)快捷方式)
靜態(tài)快捷方式是寫(xiě)在xml文件中,而動(dòng)態(tài)快捷方式是在Java代碼中編寫(xiě).
實(shí)現(xiàn) 環(huán)境要求只有Android7.1(25)及以上手機(jī)才能使用該功能
要求SDK版本為25及以上
最低兼容版本為23(因?yàn)閯?dòng)態(tài)快捷方式使用Icon類(lèi))
module 的build.gradle配置如下:
apply plugin: "com.android.application" android { compileSdkVersion 25 buildToolsVersion "25.0.0" defaultConfig { applicationId "net.devwiki.shortcuts" minSdkVersion 23 targetSdkVersion 25 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" } } } dependencies { compile fileTree(dir: "libs", include: ["*.jar"]) compile "com.android.support:appcompat-v7:25.0.0" testCompile "junit:junit:4.12" }靜態(tài)快捷方式
1.在項(xiàng)目的res/文件夾下建立 xml目錄
2.在xml目錄創(chuàng)建shortcuts.xml文件,內(nèi)容如下
屬性含義和圖片說(shuō)明如下:
shortcutId : 快捷方式的ID enabled : 是否可用,不可用時(shí)點(diǎn)擊Toast提示shortcutDisabledMessage icon : 快捷方式圖標(biāo) shortcutShortLabel : 快捷圖標(biāo)放置到桌面時(shí)的標(biāo)題 shortcutLongLabel : 長(zhǎng)按圖標(biāo)出現(xiàn)快捷方式時(shí)的標(biāo)題 shortcutDisabledMessage : 快捷圖標(biāo)禁用時(shí)的提示語(yǔ)
3.在AndroidManifest.xml文件中設(shè)置靜態(tài)快捷方式
動(dòng)態(tài)快捷方式
動(dòng)態(tài)快捷方式即在代碼中添加,更新快捷圖標(biāo).
ShortcutManager提供了添加,移除,更新,禁用,啟動(dòng),獲取靜態(tài)快捷方式,獲取動(dòng)態(tài)快捷方式,獲取固定在桌面的快捷方式等方法.
可在Java代碼中動(dòng)態(tài)對(duì)圖標(biāo)快捷方式進(jìn)行操作.
添加快捷方式
private void addShortcut() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) { ListinfoList = shortcutManager.getDynamicShortcuts(); String shortcutId = null; for (ShortcutInfo shortcutInfo : infoList) { if (ShortcutsId.WEB_DEVWIKI.equals(shortcutInfo.getId())) { shortcutId = shortcutInfo.getId(); } } if (shortcutId == null) { ShortcutInfo shortcut = new ShortcutInfo.Builder(this, ShortcutsId.WEB_DEVWIKI) .setShortLabel(getString(R.string.blog_short_label)) .setLongLabel(getString(R.string.blog_long_label)) .setIcon(Icon.createWithResource(this, R.drawable.ic_blog_logo)) .setIntent(new Intent(Intent.ACTION_VIEW, Uri.parse("http://blog.devwiki.net"))) .build(); shortcutManager.addDynamicShortcuts(Arrays.asList(shortcut)); Toast.makeText(this, R.string.add_shortcut_success, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(this, R.string.shortcut_already_exist, Toast.LENGTH_SHORT).show(); } } else { Toast.makeText(this, R.string.not_support_function, Toast.LENGTH_SHORT).show(); } }
移除快捷方式
private void removeShortcut() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) { List項(xiàng)目代碼infoList = shortcutManager.getDynamicShortcuts(); String shortcutId = null; for (ShortcutInfo shortcutInfo : infoList) { if (ShortcutsId.WEB_DEVWIKI.equals(shortcutInfo.getId())) { shortcutId = shortcutInfo.getId(); } } if (shortcutId == null) { Toast.makeText(this, R.string.shortcut_not_exist, Toast.LENGTH_SHORT).show(); } else { shortcutManager.removeDynamicShortcuts(Arrays.asList(shortcutId)); Toast.makeText(this, R.string.remove_shortcut_success, Toast.LENGTH_SHORT).show(); } } else { Toast.makeText(this, R.string.not_support_function, Toast.LENGTH_SHORT).show(); } }
項(xiàng)目代碼在此處:Shortcuts
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/66250.html
摘要:編寫(xiě)配置文件,以下是關(guān)鍵配置代碼雪碧圖合并輸出到文件參數(shù)執(zhí)行目錄參數(shù)生成的和圖片的文件名之所以推薦,是因?yàn)榉浅5撵`活,看懂模塊的可以根據(jù)你的項(xiàng)目情況編寫(xiě)對(duì)應(yīng)的配置文件。 showImg(https://segmentfault.com/img/bVGpAw?w=518&h=156); 前言 網(wǎng)站開(kāi)發(fā)90%會(huì)用到小圖標(biāo), 多小圖標(biāo)調(diào)用顯示是前端開(kāi)發(fā)常見(jiàn)的問(wèn)題;目前小圖標(biāo)顯示常見(jiàn)有兩種方式...
摘要:之前一篇博客搭建開(kāi)發(fā)環(huán)境發(fā)布后,深受好評(píng)。樂(lè)鑫官方提供插件,一站式安裝,直接將升格為,配合上原有的插件主題,的過(guò)程十分愜意。目前已開(kāi)放預(yù)覽版本,功能涵蓋等外設(shè)驅(qū)動(dòng),下一步準(zhǔn)備擴(kuò)充解碼庫(kù)有線以太網(wǎng)和一些網(wǎng)絡(luò)通信的。 ...
閱讀 2855·2023-04-25 17:59
閱讀 685·2023-04-25 15:05
閱讀 675·2021-11-25 09:43
閱讀 3038·2021-10-12 10:13
閱讀 3545·2021-09-27 13:59
閱讀 3589·2021-09-23 11:21
閱讀 3888·2021-09-08 09:35
閱讀 571·2019-08-29 17:12