安卓手机快捷键在哪里设置

安卓手机快捷键在哪里设置,第1张

1、首先进入手机设置。

2、然后找到更多设置点击进入。

3、再点击进入按键快捷方式选项。

4、进入之后,即可在此按自己的喜好设置快捷键了。

打开设置,以我的手机为例,如图

打开网络分享和便携式热点

便携式wlan打开,就好了,设置一下密码和名称,就可以收到了,但是前提是得把你的移动网络打开哈。

进入所有程序的菜单,在上面有“应用程序”和“桌面小工具”,有两种办法:

1、找到“手电筒”这个应用的图标,按住它不动,这时会自动返回桌面。然后你就把图标拖到你想的位置松开就可以了。

2、如果你的“手电筒”应用有桌面小工具的话,就向右滑动“所有程序”滑到“桌面小工具”处,找到“手电筒”的桌面小工具‘也是按住并拖到桌面上。

在Android O原生桌面上,按照传统创建快捷方式的形式,是不会产生快捷方式的。

传统方式如下:

从Android 71(API 25)开始,新增了ShortcutManager,可以对桌面久按应用图标弹出的快捷方式进行管理。

但是,Android 71上直接往桌面上添加快捷方式依然是使用上面说到的这种旧方式,但是Android O上,Google应该是想通过比较统一的接口来管理桌面快捷方式了,所以摒弃了这种形式,转而使用ShortcutManager进行管理。所以API 26上,ShortcutManager进行管理。所以API 26上,ShortcutManager新增了对Pinned Shortcuts(固定快捷方式)的管理。

官文:

Apps can pin an existing shortcut (either static or dynamic) or an entirely new shortcut to a supported launcher programatically using requestPinShortcut(ShortcutInfo, IntentSender) You pass two arguments into this method:

A ShortcutInfo object – If the shortcut already exists, this object should contain only the shortcut’s ID Otherwise, the new ShortcutInfo object must contain an ID, an intent, and a short label for the new shortcut

A PendingIntent object – This intent represents the callback that your app receives if the shortcut is successfully pinned to the device’s launcher

Note: If the user doesn’t allow the shortcut to be pinned to the launcher, the pinning process fails, and the Intent object that is passed into this PendingIntent object isn’t executed

Note: Due to background execution limits introduced in Android O, it’s best to use a manifest-declared receiver to receive a callback

Also, to prevent other apps from invoking the receiver, add the attribute assignment android:exported=”false” to the receiver’s manifest entry

Note: As you add logic in your app to make requests to pin shortcuts, keep in mind that not all launchers support pinning of shortcuts To determine whether your app can complete this process on a particular device, check the return value of isRequestPinShortcutSupported() Based on this return value, you might decide to hide the option in your app that allows users to pin a shortcut

Note: See also the support library APIs isRequestPinShortcutSupported(Context) and requestPinShortcut(Context, ShortcutInfoCompat, IntentSender), which works on Android versions lower than O by falling back to the deprecated private intent comandroidlauncheractionINSTALL_SHORTCUT

译:

应用程序可以使用requestPinShortcut(ShortcutInfo,IntentSender)将现有的快捷方式(静态或动态)或全新的快捷方式固定到支持的启动器。你通过这个方法的两个参数:

ShortcutInfo对象 - 如果快捷方式已存在,则该对象应仅包含快捷方式的ID。否则,新的ShortcutInfo对象必须包含新快捷方式的ID,意图和短标签。

PendingIntent对象 - 此意图表示如果快捷方式成功固定到设备的启动器,您的应用程序将收到回调。

注意:如果用户不允许将快捷方式固定在启动器上,则固定进程将失败,并且未执行传入此PendingIntent对象的Intent对象。

注意:由于Android O中引入的后台执行限制,最好使用清单声明的接收器来接收回调。

另外,为了防止其他应用程序调用接收器,将属性赋值android:exported =“false”添加到接收者的清单条目中。

注意:当您在应用程序中添加逻辑以引导快捷方式时,请记住,并非所有启动器都支持固定快捷方式。 要确定您的应用程序是否可以在特定设备上完成此过程,请检查isRequestPinShortcutSupported()的返回值。 根据此返回值,您可以决定隐藏您应用程序中允许用户固定快捷方式的选项。

注意:另请参见支持库API isRequestPinShortcutSupported(Context)和requestPinShortcut(Context,ShortcutInfoCompat,IntentSender),它可以在低于O的Android版本上运行,因为它们回落到不推荐使用的私有意图comandroidlauncheractionINSTALL_SHORTCUT。

ShortcutManager类在API level 26上,增加了对isRequestPinShortcutSupported、requestPinShortcut、createShortcutResultIntent三个方法。说明如下:

1isRequestPinShortcutSupported

官文:

Return TRUE if the app is running on a device whose default launcher supports requestPinShortcut(ShortcutInfo, IntentSender)

The return value may change in subsequent calls if the user changes the default launcher app

Note: See also the support library counterpart isRequestPinShortcutSupported(Context), which supports Android versions lower than O using the legacy private intent comandroidlauncheractionINSTALL_SHORTCUT

译:

如果默认桌面支持requestPinShortcut(ShortcutInfo,IntentSender)方法,则返回TRUE。

如果用户更改默认启动程序应用程序,返回值可能会在后续调用中更改。

注意:另请参见支持库对应的isRequestPinShortcutSupported(Context),在低于O的Android版本,它支持使用旧的私有意图comandroidlauncheractionINSTALL_SHORTCUT。

2requestPinShortcut

官文:

Request to create a pinned shortcut The default launcher will receive this request and ask the user for approval If the user approves it, the shortcut will be created, and resultIntent will be sent If a request is denied by the user, however, no response will be sent to the caller

Only apps with a foreground activity or a foreground service can call this method Otherwise, it’ll throw IllegalStateException

It’s up to the launcher to decide how to handle previous pending requests when the same package calls this API multiple times in a row One possible strategy is to ignore any previous requests

Note: See also the support library counterpart requestPinShortcut(Context, ShortcutInfoCompat, IntentSender), which supports Android versions lower than O using the legacy private intent comandroidlauncheractionINSTALL_SHORTCUT

译:

请求创建固定的快捷方式。默认启动器将收到该请求,并要求用户批准。如果用户批准,将创建快捷方式,并且将发送resultIntent。但是,如果请求被用户拒绝,则不会向呼叫者发送任何响应。

只有具有前台活动或前台服务的应用程序才能调用此方法。否则,它将抛出IllegalStateException。

当同一个软件包连续多次调用该API时,由开发人员决定如何处理以前的待处理请求。一个可能的策略是忽略任何先前的请求。

注意:另请参见支持库对应件requestPinShortcut(Context,ShortcutInfoCompat,IntentSender),在低于O的Android版本,它支持使用旧的私有意图comandroidlauncheractionINSTALL_SHORTCUT。

3createShortcutResultIntent

官文:

Returns an Intent which can be used by the default launcher to pin a shortcut containing the given ShortcutInfo This method should be used by an Activity to set a result in response to ACTION_CREATE_SHORTCUT

译:

返回默认启动器可以使用的Intent来固定包含给定的ShortcutInfo的快捷方式。 Activity应该使用此方法来设置响应ACTION_CREATE_SHORTCUT的结果。

根据弹窗提示可以看出,可以通过拖动这个图标往桌面上添加快捷方式,可以通过点击自动添加按键,系统给你在桌面的默认位置上添加。

添加后,桌面上会出现如图所示的图标:

回调用到的Receiver:

打印log发现,onReceive如图官方文档所说,点击弹框自动添加按键后,会得到回调。但实践发现,如果桌面上已经添加了图标,当再次调用requestPinShortcut进行添加时,onReceive会在调用requestPinShortcut的时候,直接被回调,而且弹框也会弹出来。

在以上三个方法官方介绍中,官方提示我们,可以使用Android support库的ShortcutManagerCompat进行快捷方式的版本适配。于是,在buildgradle中添加依赖进行尝试:

您是想创建文件的快捷方式吗?将经常访问的文件添加到桌面快捷方式,方便随手打开。1打开“”“文件管理”。

2在“本地”页签下,点击“内部存储”或“ SD 卡”。

3长按要设置桌面快捷方式的文件,然后点击“ > 桌面快捷方式”。

欢迎分享,转载请注明来源:品搜搜测评网

原文地址:https://pinsoso.cn/shuma/933521.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-08-17
下一篇2023-08-17

随机推荐

  • 抗老护肤品哪个品牌好 抗老精华推荐

    每一个护肤品都有着不同的护肤功效和作用,护肤品是我们日常护肤必备的产品,抗老护肤品能有效抗衰老,随着年龄的增长我们皮肤的胶原蛋白都会渐渐流失。抗老护肤品哪个品牌好1、韩国AHC第七代眼霜AHC这款第七代眼霜,口碑还是不错滴~在效果上

    2024-04-15
    35300
  • 你在屈臣氏买过哪些好用的东西?

     经常买的,我的美丽日记玻尿酸面膜,资生堂,碧柔,洗面奶,对韩束这个牌子很有好感,同学说很好用,搞活动的时候很便宜,洗发水都很好,最常买的是施华蔻和欧莱雅,搞活动的时候真的真的很便宜,然后最近会员日去被坑了一下,两百积分加六块钱换了两盒面膜

    2024-04-15
    43500
  • 有哪些小众又高级的礼物?

    送给**姐木质音乐盒八音盒jeancard 是台湾的一个很出名的音乐盒品牌。我去台湾旅游时发现的,当时逛店时就很喜欢。Jeancard ,来自台湾的本土的的创意礼物品牌,纸艺、创意、情感、环保与自然的全方位产品。其中 Wooderful l

    2024-04-15
    25600
  • 保湿精华凝露 怎么用? 用在哪个步骤呢?

    精华凝露就是精华素,直接涂抹在脸上即可,在肌肤拍完水之后使用。顺序则是:洁面---水---精华凝露---乳液。精华凝露有锁水保湿的作用,凝露质地的精华液看上去就像我们平时所用的啫喱霜,这种质地的精华液通常也是不含油分的,容易推开,好吸收,锁

    2024-04-15
    33200
  • 淡斑精华液排行榜10强品牌有哪些

    2019已经过了大半,这一年,无数新功能新类型的精华产品又席卷了护肤圈。精华产品是护肤品中浓度高、效果明显的单品,明白如何正确选择和使用精华液,护肤效果就事半功倍,今天为大家悉心总结2019美白淡斑精华液排行榜10强,从平价到贵妇,总有一款

    2024-04-15
    34200
  • skii一套多少钱

    一般几千一套。SK2有违禁物质铬、钕严重超标!铬的危害性远远不止损伤皮肤这么简单。所有铬的化合物都有毒性,它们直接损害人体的消化道、呼吸道、皮肤和黏膜。而且,铬对人体的毒害为全身性的,除引起皮炎、湿疹、气管炎和鼻炎外,甚至可能有致癌作用。而

    2024-04-15
    26800
  • 天气太套盒里面那个棍儿是干嘛用的

    天气丹的小勺子是用来取用护肤品, 尤其是眼霜的,因为眼霜每次只需要点涂一点点就能让眼周的肌肤得到充分的滋润,如果用手蘸取, 可能会涂抹过多,造成浪费的同时还有可能导致眼角产生脂肪粒,影响使用效果,所以使用小勺子可以很好地掌控。天气丹套盒是用

    2024-04-15
    27400

发表评论

登录后才能评论
保存