Tasker : Task / Shortcut Widgets
Task / Shortcut Widgets
The standard way of running a Tasker task is by attaching it to a profile which performs it when the profile becomes active. However, tasks can be directly assigned to icons on the home screen called Widgets or Shortcuts.
Standard Widgets / Shortcuts
These consist of an icon (the Task icon) with a label (the Task name) underneath, and look identical to the normal application icons in the home screen.
Clicking on the icon runs the associated Task.
Task Timer Widgets
This type consists of an icon and label, like the standard widgets, but also has a countdown timer display which counts down Days, Hours, Minutes and Seconds.
When the timer expires (reaches 0) the associated Task is run.
Tapping on the icon of the widget shows a configuration screen where the timer can be configured.
Tapping on the timer section of the widget will pause, restart or reset the timer, depending on its current state.
Note that the timer updates more rarely when it is still a long way from expiry in order to minimize power usage.
Creating a Widget / Shortcut
- Click and hold in an empty space on the Android home screen, until a dialog appears.
- Select Widgets or Shortcuts
- Select Task or Task Timer (Widgets only)
- Pick an existing task or create a new one. When creating a new one, if you do not expect to change the function of the widget/shortcut select One-Time to avoid it cluttering your list of tasks.
- Use the Configuration Screen to configure what should happen when the icon is clicked (or the timer expires, in the case of a Task Timer widget). Take care to select an appropriate name and icon for the task, as these will appear on the home screen.
Changing a Widget / Shortcut
The function of widgets or shortcuts created from one-time tasks cannot be changed, it must be deleted and recreated.
On the other hand, if you associate a normal named task with a widget or shortcut then when the task is changed (via the Task Edit screen) the function of the widget or shortcut also changes.
There are also some actions which will change the appearance of any widget:
- Tasker/Change Icon Set: changes the icon of a set of widgets to a different style.
- Tasker/Set Widget Icon: changes the icon of a particular widget
- Tasker/Set Widget Label: changes the label of a particular widget
The latter two you could use to visually show the status of something e.g. WiFi.
Deleting a Widget / Shortcut
Click and hold on the icon in the Android home screen until the dustbin icon appears. Drag the widget or shortcut icon to the dustbin icon and release.
Differences Between Widgets and Shortcuts
Advantages of Shortcuts
- they can be created in some places that widgets can't e.g. in home screen folders
- their layout probably better matches the default launcher layout
- long shortcut labels will scroll when selected in the default launcher
- they use slightly fewer system resources, though it's probably not noticeable
Advantages of Widgets
- they can use image files from SD for their icon
- their icon and label can be dynamically changed after creation via the Set Widget Icon and Set Widget Label actions.
- timer widgets are possible
- they can be created without a label
So a shortcut should be used unless the extra configuration possibilities of a widget are necessary.
General
- you can create as many Tasker widgets and shortcuts as you like. You can even have several Timer widgets running at the same time.
- Timer Task widgets continue to update even when the screen is off.
Tasker : Task / Shortcut Widgets的更多相关文章
- How to read out WhatsApp messages with Tasker and react on their content in real time
http://technologyworkroom.blogspot.sg/2013/05/tasker-how-to-read-out-whatsapp.html Tasker can read o ...
- Java网络与多线程系列之1:实现一个简单的对象池
前言 为什么要从对象池开始呢,先从一个网络IO操作的demo说起 比如下面这段代码,显而易见已经在代码中使用了一个固定大小的线程池,所以现在的重点在实现Runnble接口的匿名对象上,这个对象每次创建 ...
- windows 10 & task view & shortcut
windows 10 & task view & shortcut Win + Tab https://blogs.windows.com/windowsexperience/2014 ...
- Tasker : Scale Up/Down CPU Speed at Different Times
http://techsplurge.com/4926/android-awesome-15-tasker-profiles-tutorials/ Yeah I know, there’s SetCP ...
- Content portal for Pocketables Tasker articles
http://www.pocketables.com/2013/03/overview-of-pocketables-tasker-articles.html I write a lot about ...
- Tasker App Factory
http://tasker.dinglisch.net/userguide/en/appcreation.html App Creation Introduction Hello World Exam ...
- 【ANT】Ant常用的内置task
ant 例如: <target name="callProjectB"> <echo message="In projectA calling proj ...
- ant常用的内置 task转自https://www.cnblogs.com/baicj/archive/2015/12/21/5063608.html
ant 例如: <target name="callProjectB"> <echo message="In projectA calling proj ...
- Visual Studio 2010 Shortcut
General Shortcut Description Ctrl-X or Shift-Delete Cuts the currently selected item to the clipboar ...
随机推荐
- HDU 3861 The King’s Problem(强连通分量+最小路径覆盖)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3861 题目大意: 在csdn王国里面, 国王有一个新的问题. 这里有N个城市M条单行路,为了让他的王国 ...
- python图片处理(三)
ji那天用到了python图片处理中的二值图像的骨架提取,在matlab中通过输入图像的二值,来处理得到图像的骨架, skelimage = bwmorph(im, 'skel', inf); 在ma ...
- Linux下LAMP服务器的搭建
1.安装并配置Apache 安装apache的方法有很多种,这里选择通过yum方式进行安装,但需要Linux系统能够连接互联网,执行如下命令,安装Apache. # yum install httpd ...
- 调研助力4S店,解码困境谜团
关键词————4S店.汽车.销售.精准营销.闭环.用户满意度.精细化管理 一.背景 4S店是“四位一体”的汽车销售专卖店,包括了整车销售.零配件供应.售后服务.信息反馈四项功能. 信息化管理 精细化管 ...
- overlay实现容器跨主机通信
本节内容: Docker容器跨主机通信方案 环境信息 升级内核 安装docker 防火墙设置和开启内核转发 安装启动consul 启动Docker 创建overlay network 创建容器 测试容 ...
- HTML5元素2
用于分组的元素 元素 说明 类型 HTML5与其他的变化 blockquote 表示引自他处的大段内容 流 无变化 dd 用在dl元素之中,表示定义 无 无变化 div 一个没有任何既定语义的通用元素 ...
- 使用Kafka、Elasticsearch、Grafana搭建业务监控系统(三)Elasticsearch
https://blog.csdn.net/tonywu1992/article/details/83576863
- vue 笔记备份
Vue实现数据双向绑定的原理:Object.defineProperty() vue实现数据双向绑定主要是:采用数据劫持结合发布者-订阅者模式的方式,通过Object.defineProperty() ...
- 8-8 Ddfense Line uva1471 优先级队列
题意:给你一串长度为n的序列 你的任务是删除一个连续的子序列 使得剩下的序列中有一个长度最大的连续递增子序列 例如 将 5 3 4 9 2 8 6 7 1 中的9 2 8 删除 得到5 3 ...
- java字符串解析
java的虚拟机在内存中开辟出一块单独的区域,用来存储字符串对象,这款内存区域被称为字符串缓冲池. //创建字符串的时候先查找字符串缓冲池中没相同的对象,如果相同的对象就直接返回改对象的引用 //如果 ...