Possible Duplicate:
Disable trackball click in Android
How can I disable the trackball in my app? I only want the buttons to work when you click them using the touchscreen.
Possible Duplicate:
Disable trackball click in Android
How can I disable the trackball in my app? I only want the buttons to work when you click them using the touchscreen.
You might try catching the track ball event and returning true that it was handled. Not sure if it works though.
@Override public boolean onTrackballEvent(MotionEvent e) {
return true;
}