In Activity, override the onTouchEvent method from which you can get the Event, and from which you can get full information about the Touch (i.e. X, Y Cordinates, the pressure that the user stores on the screen and even several Touch and many others).
Take an ImageView and override onDraw and draw the desired image in coordinates (X, Y). Just use a small loop to make it invisible continuously, which looks like tactile feedback.
Use the code below to make it transparent.
ImageView myImage = (ImageView) findViewById(R.id.myImage); myImage.setAlpha(127);
Here it is. You will get the desired effect if you work correctly on the code above.
source share