修改android tablet 右键返回

修改

/frameworks/base/services/input/InputReader.cpp  文件

在getButtonState()方法中将

 if (mBtnRight) {

        result |= AMOTION_EVENT_BUTTON_SECONDARY;

    }

改为

if (mBtnRight) {

        result |= AMOTION_EVENT_BUTTON_BACK;

    }

你可能感兴趣的:(修改android tablet 右键返回)