今、私はandroid 4.1デバイスを持っていませんが、上司は私のandroidアプリケーションでBluetoothマウスのホイールイベントを処理するように要求します。
public boolean onTrackballEvent(MotionEvent event)
{
if(event.getButtonState() == MotionEvent.BUTTON_TERTIARY)
{
//This is the wheel event case,
//but I don't know what the other things about wheel rolling forward or rolling back,
//who can tell me how to process the wheel rolling forward and back status
}
}
助けてください、ありがとう!