Here is the solution I found:
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
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…