I have an andriod 2.3.5 phone,it can connect to a bluetooth mouse. But I find it only response to left-click and mouse-move.
if (event.getAction() == MotionEvent.ACTION_DOWN) {//Left Button
} else if (event.getAction() == MotionEvent.ACTION_UP) {//Left Button
} else if (event.getAction() == MotionEvent.ACTION_MOVE) {
}
What are the other action codes,such as Right Button,Wheel?
thanks