Android 7.1 快捷方式 Shortcuts
转载请注明出处:王亟亟的大牛之路
前些天就看到相关内容了,但是最近吸毒比较深(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/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
对了,桌面那个谢谢 @烧饼
Android 7.1 快捷方式 Shortcuts的更多相关文章
- Android 7.1 - App Shortcuts
Android 7.1 - App Shortcuts 版权声明:本文为博主原创文章,未经博主允许不得转载. 微博:厉圣杰 源码:AndroidDemo/Shortcuts 文中如有纰漏,欢迎大家留言 ...
- Android 7.1 App Shortcuts使用
Android 7.1 App Shortcuts使用 Android 7.1已经发了预览版, 这里是API Overview: API overview. 其中App Shortcuts是新提供的一 ...
- Android 桌面生成快捷方式
Android生成桌面快捷方式的几种方法: //------------以下为动态替换桌面应用Icon的一种解决方案------------------- // 1.获取本地目录图片的Bitmap ; ...
- (转)Android创建桌面快捷方式两种方法
[IT168技术]Android在桌面上生成快捷方式有两种情况,一种是直接在桌面直接生成;一种是长按桌面,在弹出的快捷菜单中生成. 谈谈在桌面上直接生成.个人觉得这个比较爽快,既然都是快捷方式了干嘛还 ...
- android 添加桌面快捷方式
.在桌面创建快捷方式方法: 方法一:通过长按某一个应用程序的图标在桌面上创建启动该应用程序的快捷方式. 这个方法安装完程序都用户都能实现. 方法二:在应用程序中构建一个Intent,然后以Broadc ...
- Android 添加桌面快捷方式操作
/** * 为程序创建桌面快捷方式 */ private void addShortcut(){ Intent shortcut = new Intent(“com.android.launcher. ...
- Android -- 创建桌面快捷方式
代码 /** * * 返回添加到桌 ...
- Android创建桌面快捷方式
在桌面上创建特定界面的快捷入口,icon和title根据请求参数命名.在网上收集的一些相关资 料,在使用intent发送广播的时候,一些型号的收集会有问题,如魅族MX,红米,以及华为,使用setCla ...
- Android添加桌面快捷方式的简单实现
核心代码如下: Button bn = (Button) findViewById(R.id.bn); // 为按钮的单击事件添加监听器 bn.setOnClickListener(new OnCli ...
随机推荐
- linux 配置svn服务器+使用+注意事项
本文以ubuntu系统进行安装. 1.安装svn服务器 apt-get install subversion 输入 y 回车确认安装. 安装完毕后可以用 下边的命令查看是否安装完成,如果现实出版本号和 ...
- c#系统中类的方法 Console、Object,ToolStripDropDownItem,string
一.Console 1.System 命名空间中的 Console 类提供了一个函数 ReadLine(),用于接收来自用户的输入,并把它存储到一个变量中. int num; num = Conver ...
- 服务端使用Zookeeper注册服务地址,客户端从Zookeeper获取可用的服务地址。
一个轻量级分布式RPC框架--NettyRpc - 阿凡卢 - 博客园 http://www.cnblogs.com/luxiaoxun/p/5272384.html 这个RPC框架使用的一些技术所解 ...
- C程序编译过程浅析(转)
前几天看了<程序员的自我修养——链接.装载与库>中的第二章“编译和链接”,主要根据其中的内容简单总结一下C程序编译的过程吧. 我现在一般都是用gcc,所以自然以GCC编译hellworld ...
- Yii框架2.0的模型
模型是 MVC 模式中的一部分, 是代表业务数据.规则和逻辑的对象. 可通过继承 [[yii\base\Model]] 或它的子类定义模型类,基类[[yii\base\Model]]支持许多实用的特性 ...
- python定义函数时默认参数注意事项
如果在调用一个函数时,没有传递默认参数,则函数内的默认参数是对函数的默认参数属性__defaults__的引用, 如 def func(arg1=[]): arg1.append(2) 调用func时 ...
- Django REST framework 理解
Web应用模式 1 .前后端不分离:在前后端不分离的应用模式中,前端页面看到的效果都是由后端控制,由后端渲染页面或重定向,也就是后端需要控制前端的展示,前端与厚度那的耦合度很高. 这种应用模式比较 ...
- 使用maven为web工程引入jstl包时报错了
原pom文件: <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</a ...
- db-mysql-001- 语句备份表
1.备份表 CREATE TABLE AAbak( SELECT * FROM AA ); 2.两个已存在表导数据 INSERT INTO AAbak(c1,c2) SELECT c1,c2 FROM ...
- send/receive h264/aac file/data by rtp/rtsp over udp/tcp
一.安装一些必要的调试工具 1.vlc安装sudo apt-get install vlcsudo apt-get install vlc-nox 2.ffmpeg安装,带ffplay,ffplay依 ...