苹果怎样设置双击唤醒屏幕

苹果怎样设置双击唤醒屏幕,第1张

越狱后可以通过安装插件实现。cydia中安装SmartTap这款插件即可双击唤醒屏幕。SmartTap非常适用于电源键或者Home键失灵的用户。在屏幕上点两下,就能唤醒屏幕。你还可以分配它执行其他的手势 *** 作,如从上往下滑动,或从下往上滑动。除了唤醒屏幕,它还有解锁屏幕、在锁屏运行某个应用程序的功能。

方法/步骤

为了实现这个功能可折腾了我好久,先上一份代码,经楼主验证是绝对可以用的而且也比较清晰的代码!(ps:还是先剧透下吧,第三方大部分浏览器无法成功。)

点击浏览器中的URL链接,启动特定的App。

首先做成HTML的页面,页面内容格式如下:

<a href="[scheme]://[host]/[path]?[query]">启动应用程序</a>

这一句就可以了。

各个项目含义如下所示:

scheme:判别启动的App。 ※详细后述

host:适当记述

path:传值时必须的key ※没有也可以

query:获取值的Key和Value ※没有也可以

作为测试好好写了一下,如下:

<a href="myapp://jp.app/openwith?name=zhangsan&age=26">启动应用程序</a>

接下来是Android端。

首先在AndroidManifest.xml的MAIN Activity下追加以下内容。(启动Activity时给予)

※必须添加项

<intent-filter>

<action android:name="android.intent.action.VIEW"/>

<category android:name="android.intent.category.DEFAULT" />

<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="myapp" android:host="jp.app" android:pathPrefix="/openwith"/>

</intent-filter>

HTML记述的内容加入<data …/>。

其中必须的内容仅scheme,没有其他内容app也能启动。

※注意事项:intent-filter的内容【android.intent.action.MAIN】和 【android.intent.category.LAUNCHER】这2个,不能与这次追加的内容混合。

所以,如果加入了同一个Activity,请按以下这样做,否则会导致应用图标在桌面消失等问题。

复制代码

<intent-filter>

<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER" />

</intent-filter>

<intent-filter>

<action android:name="android.intent.action.VIEW"/>

<category android:name="android.intent.category.DEFAULT" />

<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="myapp" android:host="jp.app" android:pathPrefix="/openwith"/>

</intent-filter>

复制代码

这样的话,没有问题。

接下来在Activity中需要取值的地方添加以下代码,我是直接写在OnCreate函数里的:

Intent i_getvalue = getIntent()

String action = i_getvalue.getAction()

if(Intent.ACTION_VIEW.equals(action)){

Uri uri = i_getvalue.getData()

if(uri != null){

String name = uri.getQueryParameter("name")

String age= uri.getQueryParameter("age")

}

}

若使用的是vivo手机,进入手机设置--(快捷与辅助)--智能体感--智能亮屏熄屏/智能亮屏--开启双击亮屏,然后在锁屏熄屏状态,手指双击屏幕可唤醒屏幕。(没有此开关则代表该机型不支持)。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11718274.html

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

发表评论

登录后才能评论

评论列表(0条)

保存