3

我想在我的应用程序中使用 TalkBack,但仍希望某些活动的行为有所不同。例如,当输入一个特定的活动时,我想在从那个按钮上抬起手指时选择一个按钮(触发按钮点击)。TalkBack 只允许双击以选择一个按钮。

如何“覆盖” TalkBack 手势?

谢谢!

4

1 回答 1

2

您可以在 HOVER_EXIT 上执行点击操作,但您需要做一些工作来防止 TalkBack 期待正常的双击操作。电话拨号器的DialPadImageButton提供了这种行为的一个很好的例子。以下是该类代码的一些相关部分:

@Override
public boolean onHoverEvent(MotionEvent event) {
    // When touch exploration is turned on, lifting a finger while inside
    // the button's hover target bounds should perform a click action.
    if (mAccessibilityManager.isEnabled()
            && mAccessibilityManager.isTouchExplorationEnabled()) {
        switch (event.getActionMasked()) {
            case MotionEvent.ACTION_HOVER_ENTER:
                // Lift-to-type temporarily disables double-tap activation.
                setClickable(false);
                break;
            case MotionEvent.ACTION_HOVER_EXIT:
                if (mHoverBounds.contains((int) event.getX(), (int) event.getY())) {
                    simulateClickForAccessibility();
                }
                setClickable(true);
                break;
        }
    }

    return super.onHoverEvent(event);
}

/**
 * When accessibility is on, simulate press and release to preserve the
 * semantic meaning of performClick(). Required for Braille support.
 */
private void simulateClickForAccessibility() {
    // Checking the press state prevents double activation.
    if (isPressed()) {
        return;
    }

    setPressed(true);

    // Stay consistent with performClick() by sending the event after
    // setting the pressed state but before performing the action.
    sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_CLICKED);

    setPressed(false);
}
于 2013-08-21T07:21:21.643 回答