我想在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”选项?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)