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 ...
随机推荐
- 一种获取xml文件某个节点内容的shell方法
配置文件 config.xml <xml> <server> <name>srv-01</name> </server> <serve ...
- java基础53 IO流技术(转换流)
1.转换流 1.输入字节的转换流:InputStreamReader是字节流转为字符流的桥梁,可以把输入字节流转换为输入字符流 2.输出字节流的转换流:OutputStreamWriter是字符 ...
- irport报表,把数字金额转换成大写人民币金额
1.编写oracle函数 CREATE OR REPLACE Function MoneyToChinese(Money In Number) Return Varchar2 Is strYuan ) ...
- github后端开发面试题大集合(一)
作者:小海胆链接:https://www.nowcoder.com/discuss/3614?type=0&order=0&pos=5&page=0?from=wb来源:牛客网 ...
- SQLServer判断指定列的默认值是否存在,并修改默认值
SQLServer判断指定列的默认值是否存在,并修改默认值 2008年10月21日 星期二 下午 12:08 if exists(select A.name as DefaultName,B.name ...
- 手工增加Mapping
[root@es ~]# curl -H "Content-Type:application/json" -XPOST "http://127.0.0.1:9200/t_ ...
- 一步一步学习IdentityServer4 (4) 处理特殊需求之-登录等待页面
用IdentityServer3的时候登录如果采用Post方式大家会发现有中间有一个等待Submit空白页面,界面不友好,现在我想把这个修改自定义的页面Loading 在Identityserver3 ...
- ajax传递的参数服务器端接受不到的原因
最常见的就是组织的json数据格式有问题,尝试把单引号改为双引号试试,如下: $datares = {"uname":$uname.val(),"phone": ...
- MFC+WinPcap编写一个嗅探器之五(过滤模块)
这一节主要介绍如何获设置捕获过滤,这里的过滤是指在捕获前过滤 设置捕获过滤主要是在CFilterDlg中完成,也就是对应之前创建的设置过滤规则对话框,如图: 首先要根据用户的选择来生成一个合法的过滤规 ...
- 使用VSCode配置简单的vue项目
由于最近要使用的项目框架为前后端分离的,采用的是vue.js+webAPI的形式进行开发的.因为之前我没有接触过vue.js,也只是通过视频文档做了一些简单的练习.今天技术主管说让大家熟悉下VSCod ...