tags:

views:

45

answers:

1

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.

A: 

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;
}
sadboy
thanks but It doesn't work :(
JouiCK