Android 7.1已經發了預覽版, 這裏是API Overview: API overview.
其中App Shortcuts是新提供的一種快捷訪問方式, 形式爲長按應用圖標出現的長條.html
圖來自: Exploring Android Nougat 7.1 App Shortcutsjava
點擊快捷方式能夠訪問應用功能, 而且這種快捷方式也能夠被拖拽到桌面單獨放置.android
其中App Shortcuts是指在桌面長按app圖標而出現的快捷方式, 能夠爲你的app的關鍵功能添加更快速的入口而不用先打開app.git
點擊快捷方式能夠訪問應用功能, 而且這種快捷方式也能夠被拖拽到桌面單獨放置, 變成單獨的桌面快捷方式(pinned shortcuts).github
有兩種shortcuts:web
每個應用目前最多能夠有5個shortcuts(靜態 + 動態).api
運行條件:
應用添加App Shortcuts是Android 7.1(API 25)的API, 因此只能在Android 7.1的設備上顯示, 同時須要launcher支持, 好比Pixel launcher(Pixel設備的默認launcher), Now launcher(Nexus設備上的launcher)如今就支持, 其餘launcher也能夠提供支持.瀏覽器
靜態的Shortcuts是寫在xml中的, 直到下一次應用升級, 不能被改變.
要添加靜態shortcuts只需兩步:
首先, 在應用的Manifest中啓動Activity上添加<meta-data>
:微信
<activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts" /> </activity>
而後在res/xml/
目錄下建立shortcuts.xml
文件, 裏面包含靜態的shortcuts:app
<?xml version="1.0" encoding="utf-8"?> <shortcuts xmlns:android="http://schemas.android.com/apk/res/android"> <shortcut android:enabled="true" android:icon="@drawable/ic_check_circle_black_24dp" android:shortcutDisabledMessage="@string/static_shortcut_disabled_message" android:shortcutId="static" android:shortcutLongLabel="@string/static_shortcut_long_label_1" android:shortcutShortLabel="@string/static_shortcut_short_label_1"> <intent android:action="android.intent.action.VIEW" android:targetClass="com.ddmeng.hellonougat.shortcuts.StaticShortcutActivity" android:targetPackage="com.ddmeng.hellonougat" /> </shortcut> <shortcut android:enabled="true" android:icon="@drawable/ic_android_black_24dp" android:shortcutDisabledMessage="@string/static_shortcut_disabled_message" android:shortcutId="static_2" android:shortcutLongLabel="@string/static_shortcut_long_label_2" android:shortcutShortLabel="@string/static_shortcut_short_label_2"> <intent android:action="android.intent.action.MAIN" android:targetClass="com.ddmeng.hellonougat.MainActivity" android:targetPackage="com.ddmeng.hellonougat" /> <intent android:action="com.ddmeng.hellonougat.action.STATIC_SHORTCUT_2" android:targetClass="com.ddmeng.hellonougat.shortcuts.StaticShortcutActivity" android:targetPackage="com.ddmeng.hellonougat" /> </shortcut> </shortcuts>
這就行了, 這個文件添加了兩個shortcuts, 點擊都將打開指定的Activity, 本例子中是StaticShortcutActivity
.
上面這個文件裏添加了兩個靜態的shortcuts, 第一個關聯了一個Activity, 點擊shortcut將直接打開這個Activity, 回退的時候回到桌面.
若是你想要的效果是點擊back鍵回到應用裏的某個界面, 那麼能夠利用多個intents來構建back stack, 好比在第二個shortcut裏面, 點擊shortcut仍是打開目標Activity, 這個指定目標Activity的Intent放在最後, 可是回退會返回到MainActivity, 即以前的那個Intent.
動態的shortcuts能夠在用戶使用app的過程當中構建, 更新, 或者刪除.
使用ShortcutManager能夠對動態shortcuts完成下面幾種操做:
setDynamicShortcuts()
, addDynamicShortcuts(List)
;updateShortcuts(List)
;removeDynamicShortcuts(List)
, removeAllDynamicShortcuts()
.好比添加一個動態shortcut:
ShortcutManager shortcutManager = getSystemService(ShortcutManager.class); ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "id1") .setShortLabel("Web site") .setLongLabel("Open the web site") .setIcon(Icon.createWithResource(context, R.drawable.icon_website)) .setIntent(new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.mysite.example.com/"))) .build(); shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut));
點擊這個shortcut會發出一個打開網頁的Intent, 讓你選擇瀏覽器, 從而打開網址.
動態的shortcut仍然能夠用多個Intent來指定一個back stack, 那麼打開目標Activity以後就能夠返回到應用中的指定界面而不是回到launcher:
ShortcutInfo dynamicShortcut2 = new ShortcutInfo.Builder(this, "shortcut_dynamic") .setShortLabel("Dynamic Shortcut") .setLongLabel("Open Dynamic shortcut 2") .setIcon(Icon.createWithResource(this, R.drawable.ic_favorite_border_black_24dp)) .setIntents( // this dynamic shortcut set up a back stack using Intents, when pressing back, will go to MainActivity // the last Intent is what the shortcut really opened new Intent[]{ new Intent(Intent.ACTION_MAIN, Uri.EMPTY, this, MainActivity.class).setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK), new Intent(DynamicShortcutActivity.ACTION_OPEN_DYNAMIC) // intent's action must be set }) .build();
和靜態同樣, 最後一個Intent對應的是shortcut打開的界面DynamicShortcutActivity
, 前面的都是用來構建back stack, 即back退回到MainActivity.
注意這裏的Intent必須指定Action, 不然會拋出異常.
Shortcuts的總數不能超過5個, 即靜態和動態shortcuts加起來總數最可能是五個.
當咱們嘗試添加第六個shortcut時, 應用會拋出異常: java.lang.IllegalArgumentException: Max number of dynamic shortcuts exceeded
.
雖然總數限制是5個, 可是當我正好有5個(2個靜態 + 3個動態)的時候, 長按只顯示了4個shortcuts.
如圖:
本文完整代碼見: Demo地址: HelloNougat.
當咱們有多個Shortcuts以後, 默認它們是按照添加順序排列的, 即按照添加順序rank遞增.
能夠經過setRank()
來改變長按時它們顯示的排序:
@TargetApi(25) private void updateDynamicShortcuts() { ShortcutInfo webShortcut = new ShortcutInfo.Builder(MainActivity.this, "shortcut_blog") .setRank(1) .build(); ShortcutInfo dynamicShortcut = new ShortcutInfo.Builder(MainActivity.this, "shortcut_dynamic") .setRank(0) .build(); // the rank value can not be set to negative, otherwise will throw // java.lang.IllegalArgumentException: Rank cannot be negative or bigger than MAX_RANK // the static shortcuts have the rank 0, so they will always be closest to launcher icon shortcutManager.updateShortcuts(Arrays.asList(webShortcut, dynamicShortcut)); }
這樣更改以後, 原先排在最遠端的shortcut_dynamic
被移到了第三個, shortcut_blog
被移到了它的後面.
setRank()
不接受負值, 會拋出異常.
咱們只能改變更態shortcuts的排序, 靜態的shortcuts等級爲0, 它們是按照xml中寫定的前後順序排的, 因此:
靜態的shortcuts永遠離應用icon最近, 動態shortcuts在其之上排序, rank越大的離應用icon越遠.
若是沒有指定rank, 則按生成的順序遞增.
App Shortcuts的官方文檔: App Shortcuts
Exploring Android Nougat 7.1 App Shortcuts
Demo地址: HelloNougat.
近期考慮加入更多Android 7 Nougat特性sample.
最後, 歡迎關注微信公衆號: 聖騎士Wind