我的应用程序包含一个充满按钮的区域。我希望以这种方式实现活动,在按钮区域上挥动手势会将其切换到另外两个区域之一(使用 ViewFlipper)。
我已经提出了两种检测手势的方法。第一个涉及使用 GestureDetector。但是,Button 上的触摸运动事件并没有引发 onTouchEvent 活动方法,因此 - 结果 - 我无法将其转发到 GestureDetector 类。简而言之,失败。
第二种方法 - 涉及使用 GestureOverlayView。然而,这一次,我达到了第二个极端:不仅检测到手势,而且执行手势的按钮也报告了点击。
我希望界面以下列方式工作:如果用户触摸按钮并释放触摸(或仅移动一点手指),则按钮报告单击并且未检测到手势。另一方面,如果用户触摸屏幕并进行更长的移动,则应检测到手势并且按钮不会报告单击事件。
我已经实现了一个小型的概念验证应用程序。活动 XML 代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical">
<android.gesture.GestureOverlayView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/overlay">
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<TextView android:id="@+id/display" android:layout_width="match_parent" android:layout_height="wrap_content" />
<Button android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/button"/>
</LinearLayout>
</android.gesture.GestureOverlayView>
</LinearLayout>
活动java代码如下:
package spk.sketchbook;
import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import android.gesture.*;
import android.gesture.GestureOverlayView.OnGestureListener;
public class Main extends Activity implements OnGestureListener, OnClickListener
{
private void SetupEvents()
{
GestureOverlayView ov = (GestureOverlayView)findViewById(R.id.overlay);
ov.addOnGestureListener(this);
Button b = (Button)findViewById(R.id.button);
b.setOnClickListener(this);
}
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
SetupEvents();
}
@Override
public void onGesture(GestureOverlayView arg0, MotionEvent arg1)
{
TextView tv = (TextView)findViewById(R.id.display);
tv.setText("Gesture");
}
@Override
public void onGestureCancelled(GestureOverlayView arg0, MotionEvent arg1)
{
}
@Override
public void onGestureEnded(GestureOverlayView overlay, MotionEvent event)
{
}
@Override
public void onGestureStarted(GestureOverlayView overlay, MotionEvent event)
{
}
@Override
public void onClick(View v)
{
TextView tv = (TextView)findViewById(R.id.display);
tv.setText("Click");
}
}
问题是:如何实现这样一个界面,它可以决定用户动作是手势还是按钮点击?
最好的问候——幽灵。