如何在Android中以编程方式启用“show touches”选项?

如何在Android中以编程方式启用“show touches”选项?,第1张

概述我想在Android设备的设置中启用“showtouches”.这是链接,向我们展示了访问“触摸设置”的方式,但我没有找到访问“showtouches”的方法.Howtoprogrammaticallycheck,getandsettouchsettingsinandroidphones?请帮帮我!解决方法:这是我找到的解决方案:要启用showtouc

我想在Android设备的设置中启用“show touches”.这是链接,向我们展示了访问“触摸设置”的方式,但我没有找到访问“show touches”的方法.
How to programmatically check, get and set touch settings in android phones?

请帮帮我!

解决方法:

这是我找到的解决方案:

要启用show touches:

Settings.System.putInt(context.getContentResolver(),                "show_touches", 1);

要禁用show touches:

Settings.System.putInt(context.getContentResolver(),                "show_touches", 0);

记得将androID.permission.WRITE_SETTINGS添加到你的Manifest中.

总结

以上是内存溢出为你收集整理的如何在Android中以编程方式启用“show touches”选项?全部内容,希望文章能够帮你解决如何在Android中以编程方式启用“show touches”选项?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

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

原文地址: http://outofmemory.cn/web/1101030.html

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

发表评论

登录后才能评论

评论列表(0条)

保存