背景:我试图在我的应用程序中检测边缘滑动(调出菜单),搜索stackoverflow似乎表明检测滑动的方法是从fling检测开始。
我试图在我的应用中检测到一个事件。我可以覆盖dispatchTouchEvent()
或onTouchEvent()
并将事件传递给手势监听器,一切都按预期工作。
但是,我的应用程序中有按钮小部件,我无法检测到投掷并使用小部件。
如果我从onTouchEvent()
调用手势检测器,如果手势在消耗该事件的小部件上启动,则不会检测到fl。如果我从dispatchTouchEvent()
调用手势检测器,则小部件无法获得所需的事件。
我也尝试过附加到容器的onTouchEvent()
,但结果是一样的。
最后,我已经查看了ViewPager的源代码,看看他们是如何做到的,他们做的是覆盖onInterceptTouchEvent()
。我可以看到它的工作原理和原因,但我希望有一个更简单的解决方案,并不要求我实现自己的容器小部件。
源代码:
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.GestureDetector;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.view.MotionEvent;
import android.view.View;
public class Fling extends Activity {
private static final String TAG = "FlingTest";
protected GestureDetector gestureDetector;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
gestureDetector = new GestureDetector(this, listener);
}
/*
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
if (gestureDetector.onTouchEvent(event))
return true;
return super.dispatchTouchEvent(event);
}
*/
@Override
public boolean onTouchEvent(MotionEvent event) {
return gestureDetector.onTouchEvent(event);
}
private final SimpleOnGestureListener listener =
new SimpleOnGestureListener() {
public boolean onDown(MotionEvent e1) { return true; }
public boolean onFling(MotionEvent e1, MotionEvent e2, float vx, float vy) {
Log.d(TAG, "Fling: " + vx + "," + vy);
return true;
}
};
}
layout.xml文件,虽然几乎任何布局都会显示这些问题:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/buttonPane"
android:background="#446"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button
android:text="btn"
android:layout_width="wrap_content" android:layout_height="wrap_content"
/>
<Button
android:text="btn"
android:layout_width="wrap_content" android:layout_height="wrap_content"
/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button
android:text="btn"
android:layout_width="wrap_content" android:layout_height="wrap_content"
/>
<Button
android:text="btn"
android:layout_width="wrap_content" android:layout_height="wrap_content"
/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
我找到了一个似乎有用的答案。我将dispatchTouchEvent()更改为两者调用手势检测器并将事件传递给链。
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
gestureDetector.onTouchEvent(event);
return super.dispatchTouchEvent(event);
}
它不漂亮,我不确定它是否健壮,但似乎有效。
仍然希望有更好的答案,但我想我会试试这个方法。