app shortcut官方文檔
shortcut是android7.1推出的新特性,仿ios的3d touch功能略步,在android平臺(tái)上表現(xiàn)為長(zhǎng)按彈出快捷方式,7.1系統(tǒng)上谷歌自家app均支持了該功能描扯,例如系統(tǒng)app YouTube等。
簡(jiǎn)介
app shortcut分為static shortcut和Dynamic short,可以類(lèi)比android廣播分動(dòng)態(tài)注冊(cè)靜態(tài)注冊(cè)來(lái)理解趟薄,具體看文檔即可理解绽诚,因項(xiàng)目使用的功能靜態(tài)注冊(cè)方式可實(shí)現(xiàn),這里只談?wù)勳o態(tài)注冊(cè)
文檔中沒(méi)提的坑
模擬器上會(huì)出現(xiàn)莫名其妙的問(wèn)題杭煎,建議這功能直接真機(jī)測(cè)試
文檔intent中有個(gè)targetPackage配置項(xiàng)憔购,初一看以為是packname,實(shí)際是applicationID配置岔帽。插個(gè)知識(shí)點(diǎn)在eclipse項(xiàng)目結(jié)構(gòu)時(shí)packname和applicationID是同一概念或者說(shuō)二者值一致,但android studio項(xiàng)目結(jié)構(gòu)時(shí)导绷,二者是不同的applicationID應(yīng)用程序的唯一標(biāo)識(shí)而packname僅僅指項(xiàng)目的包名并沒(méi)有唯一性犀勒。 因此debug release包該參數(shù)需要?jiǎng)討B(tài)配置
1.在build.gradle文件中定義一個(gè)常量,分debug和release賦不同值妥曲,再shortcuts.xml中調(diào)用贾费,結(jié)果 行不通
2.google到的方案https://github.com/Zellius/android-shortcut-gradle-plugin/blob/master/README.md 大概用了一個(gè)第三方庫(kù),不在shortcuts.xml中對(duì)targetPackage直接賦值檐盟,在代碼中實(shí)現(xiàn) 測(cè)試可行
3.用隱試intent方案褂萧,繞過(guò)targetpackage配置, 結(jié)果行不通
4.當(dāng)然講debug release包分開(kāi)編譯調(diào)用不同代碼方式肯定是能解決這個(gè)問(wèn)題的葵萎。但有點(diǎn)拿大炮打蚊子感覺(jué) 故放棄該方案還有個(gè)小case导犹,快捷方式指向購(gòu)物車(chē)頁(yè)面唱凯,如果在該頁(yè)面back,按照文檔上寫(xiě)是直接推出app谎痢,其實(shí)可以實(shí)現(xiàn)從back到指定頁(yè)面磕昼,類(lèi)似我們app中back回的首頁(yè),這是比較合乎常理的节猿,實(shí)現(xiàn)只需在對(duì)應(yīng)intent上加上back會(huì)頁(yè)面的intent票从。
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="compose"
android:enabled="true"
android:icon="@drawable/compose_icon"
android:shortcutShortLabel="@string/compose_shortcut_short_label1"
android:shortcutLongLabel="@string/compose_shortcut_long_label1"
android:shortcutDisabledMessage="@string/compose_disabled_message1">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example.myapplication"
android:targetClass="com.example.myapplication.mainactivity" />
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example.myapplication"
android:targetClass="com.example.myapplication.ComposeActivity" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
<!-- Specify more shortcuts here. -->
</shortcuts>
小結(jié)
當(dāng)然把a(bǔ)pp shortcut使用的更加人性化,還有很多小細(xì)節(jié)可以處理的更加完美滨嘱,例如app運(yùn)行時(shí)跟非運(yùn)行時(shí)back頁(yè)面的區(qū)別處理峰鄙。 快捷方式的更新處理,等等太雨。吟榴。總之躺彬,基礎(chǔ)的功能實(shí)現(xiàn)容易煤墙,做得更好還是需要下翻功夫的
2017年3月23更新
關(guān)于targetPackage自動(dòng)配置提供一個(gè)新方案,直接gradle寫(xiě)個(gè)腳本替換shortcuts.xml文件中targetPackage的值
def replaceInShortcuts(variant, fromString, toString) {
def flavor = variant.productFlavors.get(0)
def buildType = variant.buildType
def shortcutsFile = "$buildDir/intermediates/res/merged/${flavor.name}/${buildType.name}/xml/shortcuts.xml"
def file = new File(shortcutsFile);
def updatedContent = file.getText('UTF-8').replaceAll(fromString, toString)
file.write(updatedContent, 'UTF-8')
}
output.processResources.doFirst {
replaceInShortcuts(variant, '\\{PCK\\}', variant.applicationId)
}
注:本文作者在私人賬號(hào)發(fā)表過(guò)宪拥,此次是在公司賬號(hào)發(fā)布仿野。