Con un OnTouchListener, el código sería más o menos así:
Código:
img.setOnTouchListener(new OnTouchListener() {
float x,y;
public boolean onTouch(View b, MotionEvent arg1) {
if( arg1.getAction() == MotionEvent.ACTION_DOWN) {
{
x = arg1.getX();
y = arg1.getY();
}