所以,我希望能够使用GestureOverlayView和OnGestureListener识别高级手势,并且能够使用GestureDetector检测双击和长按。我在两个不同的项目中分别使用这两个功能。但是,我正在尝试将它们结合起来并遇到一些问题。当我尝试双击/长按时,它似乎无法被识别,因为GestureOverlayView覆盖了整个屏幕,并且只能识别手势生成器中定义的高级手势。有谁知道如何设置GestureOverlayView以便它允许GestureDetector完成它的工作?我的代码:
public class HelloAndroid extends Activity implements OnGesturePerformedListener, OnDoubleTapListener, OnGestureListener {
/** Called when the activity is first created. */
private GestureLibrary mLibrary;
private GestureDetector detector;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mLibrary = GestureLibraries.fromRawResource(this, R.raw.gestures);
if (!mLibrary.load()) {
finish();
}
GestureOverlayView gestures = (GestureOverlayView) findViewById(R.id.gestures);
gestures.addOnGesturePerformedListener(this);
detector = new GestureDetector(this, this);\
和xml ......
<?xml version="1.0" encoding="utf-8"?>
<android.gesture.GestureOverlayView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gestures"
android:layout_width="fill_parent"
android:visibility="invisible"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>
</android.gesture.GestureOverlayView>
提前致谢!
答案 0 :(得分:3)
我做到了,但不确定我的解决方案是否适合您。 您是否需要在整个活动中或在列表中检测双击和长按?
在我的项目中,我所拥有的当然是GestureOverlayView包装所有内容,但我的GestureDetector仅在我想要处理这些事件的容器上分配,特别是在带有缩略图的网格上。
实际上,我的手势检测器位于View.OnTouchListener
中public class TouchListener implements View.OnTouchListener {
Rect rect = new Rect();
@Override
public boolean onTouch(View v, MotionEvent event) {
gestureDetector.onTouchEvent(event);
// We do not use the return value of
// mGestureDetector.onTouchEvent because we will not receive
// the "up" event if we return false for the "down" event.
// false is returned so children views can receive touch event too.
return false;
}
private View getViewAt(int x, int y) {
// I need to know which thumbnail was selected
}
GestureDetector gestureDetector = new GestureDetector(new SimpleOnGestureListener() {
@Override
public void onLongPress(MotionEvent e) {…}
@Override
public boolean onSingleTapConfirmed(MotionEvent e) {…}
@Override
public boolean onDoubleTap(MotionEvent e) {...}
});
}
然后我只需要将此触摸侦听器分配给我的网格。在您的情况下,它可能会在您的列表中使用。
mGrid.setOnTouchListener(new TouchListener());
当未检测到手势时,GesturOverlayView会将触摸事件传播到内部视图。解决方案是在视图上创建一个touchlistener,您需要在侦听器onTouch方法上使用GestureDetector检测简单的手势。希望它可以帮助你。
答案 1 :(得分:1)
问题来自您的活动的onTouchEvent(事件)方法,因为该事件被GestureOverlayView拦截而未被调用。
如果您想在活动中获取此事件,您可能希望覆盖dispatchTouchEvent(event)方法。
在您的情况下,此代码可能有效:
@Override
public boolean dispatchTouchEvent(MotionEvent e)
{
detector.onTouchEvent(e);
return super.dispatchTouchEvent(e);
}
答案 2 :(得分:0)
我遇到了同样的问题。
GestureOverlayView正在拦截onTouchEvent。所以只需设置
android:eventsInterceptionEnabled="false"
结果应该是这样的:
<android.gesture.GestureOverlayView
android:id="@+id/gestures"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:eventsInterceptionEnabled="false" >
答案 3 :(得分:0)
我遇到了一些问题。 我找到了一个解决方案,但我不知道它为什么会起作用。
我使用了dispathTouchEvent方法但是我用我的GestureDetector实例调用onTouchEvent()。
@Override
public boolean dispatchTouchEvent(MotionEvent ev)
{
this.myGestureDetector.onTouchEvent( ev );
return super.dispatchTouchEvent(ev);
}