黑莓风暴模拟器 - TouchGesture事件不点火,如何让轻扫工作?(Blackberry S

2019-09-20 11:31发布

在玩风暴模拟器和4.7 JDE,对我的生活我无法弄清楚如何在射击模拟器手势事件。

下面是RIM的示例应用程序EmbeddedMapDemo触摸事件代码。 这看起来非常简单就够了,但touchGesture.getEvent()== TouchGesture.SWIPE似乎永远不会注册为true。

如何注册在模拟器上挥笔? 随着我的鼠标我尝试做单击鼠标左键并拖动,但似乎并没有工作。

/**
* @see Field#touchEvent(TouchEvent)
*/
protected boolean touchEvent(TouchEvent message)
{        
    boolean isConsumed = false;

    if(_mapField.isClicked())
    {
        TouchGesture touchGesture = message.getGesture(); 
        if (touchGesture != null)
        {                
            // If the user has performed a swipe gesture we will 
            // move the map accordingly.
            if (touchGesture.getEvent() == TouchGesture.SWIPE)
            {      
                // Retrieve the swipe magnitude so we know how
                // far to move the map.
                int magnitude = touchGesture.getSwipeMagnitude();

                // Move the map in the direction of the swipe.
                switch(touchGesture.getSwipeDirection())
                {
                    case TouchGesture.SWIPE_NORTH:
                        _mapField.move(0, - magnitude);
                        break;
                    case TouchGesture.SWIPE_SOUTH:
                        _mapField.move(0, magnitude);
                        break;
                    case TouchGesture.SWIPE_EAST:
                        _mapField.move(- magnitude, 0);
                        break;
                    case TouchGesture.SWIPE_WEST:
                        _mapField.move(magnitude, 0);
                        break;                            
                } 
                // We've consumed the touch event.
                isConsumed = true; 
            }
        }     
    }
    return isConsumed;       
}

Answer 1:

按下鼠标左键点击模拟按住屏幕...模拟器(还有一个实际的风暴设备,我认为),将不会触发TouchGesture事件,当你点击在屏幕上上下。

你想要做的是按住鼠标右键并拖动,因为鼠标右键模拟屏幕点击,如果没有点击。 这样一来,你应该能够得到TouchGestures火。

这一点很难做到在模拟器上的手势,你还挺必须迅速采取行动,但如果你使用鼠标右键,你应该能够做到这一点。



文章来源: Blackberry Storm Emulator - TouchGesture events not firing, how to get a Swipe to work?