Android 7.1 快捷方式 Shortcuts

本文介绍了Android 7.1中的快捷方式(Shortcuts)功能,包括Static和Dynamic Shortcuts的使用方法。通过XML配置实现静态快捷方式,动态快捷方式则需要在代码中动态添加。同时,文章提供了兼容低版本的解决方案和相关资源链接。
摘要由CSDN通过智能技术生成

转载请注明出处:王亟亟的大牛之路

前些天就看到相关内容了,但是最近吸毒比较深(wow),所以没有紧跟潮流,今天补一篇。

先安利:https://github.com/ddwhan0123/Useful-Open-Source-Android [408 star]

看下效果:

这里写图片描述

肉眼看就是多了一排列表,是一些可点击的按钮,可定制一些常用的方便用户操作的快捷键。

理论知识翻译自官网,有基础好的同学可以直接看:https://developer.android.com/preview/shortcuts.html


啰里八嗦的文本介绍就不提了,说下怎么用合一些规范

他有2种加载方式

1.静态加载
2.动态加载

静态的方式可以兼容低版本,动态的暂时只支持7.1

字面就很好理解,静态的就是事先编辑好展示ui,跳转逻辑等等。
动态就是可以临时调用。


Static Shortcuts

在AndroidManifest.xml文件,首页activity的节点里的</intent-filter>下添加

 <meta-data android:name="android.app.shortcuts"
                android:resource="@xml/shortcuts" />

shortcuts 其实就是我们静态编辑的内容,类似于预设Menu的概念

这里写图片描述


加完之后就是编辑shortcuts这个xml了,他要在 res/xml/shortcuts.xml 这个位置

例子中的文件清单如下

<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">

    <shortcut
        android:shortcutId="shortcut1"
        android:enabled="true"
        android:icon="@drawable/happy"
        android:shortcutShortLabel="@string/one_text"
        android:shortcutLongLabel="@string/one_long"
        android:shortcutDisabledMessage="@string/one_disabled">
        <intent
            android:action="one"
            android:targetPackage="demo.wjj.shortcutsdemo"
            android:targetClass="demo.wjj.shortcutsdemo.MainActivity" />
    </shortcut>

    <shortcut
        android:shortcutId="shortcut2"
        android:enabled="false"
        android:icon="@drawable/woman"
        android:shortcutShortLabel="@string/two"
        android:shortcutLongLabel="@string/two_long"
        android:shortcutDisabledMessage="@string/two_disabled">
        <intent
            android:action="two"
            android:targetPackage="demo.wjj.shortcutsdemo"
            android:targetClass="demo.wjj.shortcutsdemo.MainActivity" />
    </shortcut>

    <shortcut
        android:shortcutId="shortcut3"
        android:enabled="true"
        android:icon="@drawable/angry"
        android:shortcutShortLabel="@string/three"
        android:shortcutLongLabel="@string/three_long"
        android:shortcutDisabledMessage="@string/three_disabled">
        <intent
            android:action="three"
            android:targetPackage="demo.wjj.shortcutsdemo"
            android:targetClass="demo.wjj.shortcutsdemo.MainActivity" />
    </shortcut>

</shortcuts>

自行设置包名,类名,icon,描述文字等。

action对应的就是你点完快捷键回到activity时作判断的”key”
例子里第二个”item”没显示出来也就是因为android:enabled设置了false

其他的你只要在业务界面 getIntent().getActiob()就行了,so easy


Dynamic Shortcuts

动态的加载方式就相对麻烦一点,但是代码更活,官方提到的常用方法如下

setDynamicShortcuts(List)  重新设置动态快捷方式的列表。

addDynamicShortcuts(List) 添加到已存在的快捷方式列表。

updateShortcuts(List) 更新列表。

removeDynamicShortcuts(List) 移除快捷方式。

removeAllDynamicShortcuts() 移除全部快捷方式。

然后他举了个跳转网页的例子

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));

然后就是一堆规范啊,要求啊,设计的,这边不做详细解释,直接简单明了的概括下

按照快捷键设计指南 传送门:https://material.google.com/style/icons.html#icons-launcher-shortcut-icons

只发布四个不同的快捷键:最多可以发5个,但是太长的话很丑,所以最多就放4个item

极限快捷描述长度:字数不要太多,长了也放不下外加占地方,尽量精简,如果可能的话,限制快捷方式的“简短描述”的长度为10个字符,并限制“长说明”的长度为25个字符。

维持快捷和行动使用历史:对于您创建的每个快捷方式,可以考虑在其中一个用户可以在应用程序内直接完成相同的任务的不同方法。

更新快捷方式,只有当它们的含义被保留

动态快捷键备份过程中不保留和恢复:动态快捷键不保留在设备经历了备份和恢复操作。


——————-我是华丽的分割线——————–

以下内容不看,demo跑了也看不到效果!!!!

其实这些都还好,慢慢倒持研究下就好,但是世界更新的太快,国人还在 安卓 4 5间徘徊,本宝宝没有7.1啊怎么跑?

在各方咨询后找到了一个兼容桌面,可以还原模拟谷歌桌面哦。

在不自定义快捷键的情况下,它自带会有一个快捷键

这里写图片描述
官网地址:http://www.apkmirror.com/apk/teslacoil-software/nova-launcher/

如果你懒,也可以走我的传送门:https://github.com/ddwhan0123/BlogSample/blob/master/ShortcutsDemo/com.teslacoilsw.launcher_5.0-beta8-49908_minAPI16(nodpi)_apkmirror.com.apk?raw=true

源码地址:https://github.com/ddwhan0123/BlogSample/tree/master/ShortcutsDemo

下载地址:https://github.com/ddwhan0123/BlogSample/blob/master/ShortcutsDemo/ShortcutsDemo.zip?raw=true

相关资料:http://www.androidcentral.com/how-use-app-shortcuts-android-71-google-pixel

发完后被吐槽后想起来,其实官方有sample….瞬间石化,但是写都写了,补个传送门吧https://developer.android.com/samples/AppShortcuts/project.html

对了,桌面那个谢谢 @烧饼

  • 3
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值