如何以编程方式启用"显示触摸" Android中的选项?

时间:2014-10-16 11:06:06

标签: android touch settings

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

请帮帮我!

2 个答案:

答案 0 :(得分:4)

以下是我找到的解决方案:

启用 show touches

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

要停用显示触摸

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

请务必将android.permission.WRITE_SETTINGS添加到Manifest

答案 1 :(得分:0)

如果仍然不起作用使用解决方案由顶部给定并将目标版本更改为清单文件中的22。它会工作正常 谢谢你回答TOP。