搜索关键字“Android 显示触摸操作代码”,结果都是进入设置页面的开发者模式下进行打开。其实,想用代码进行控制。那就搜索“android show visual feedback for touches”,OK,这就可以找到想要的结果了。
代码如下:
To enable show touches:
Settings.System.putInt(context.getContentResolver(),
"show_touches", 1);
To disable show touches:
Settings.System.putInt(context.getContentResolver(),
"show_touches", 0);
Remember to add android.permission.WRITE_SETTINGS
to your Manifest
.
文章评论