如何在android应用程序中实现手势支持?

问题描述:

尝试在我的应用程序中实现左手和右手手势。如何在android应用程序中实现手势支持?

这里是我的布局:

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 
    <LinearLayout 
     android:orientation="vertical" android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:paddingRight="10sp"> 
     <TextView android:id="@+id/movie_title" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center_horizontal" 
        android:text="text" 
        android:paddingTop="8sp" 
        android:paddingBottom="16sp" 
        android:textSize="16sp" 
        android:textColor="#FFFFFF" 
        android:textStyle="bold"/> 
     <ImageView android:id="@+id/movie_poster" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center_horizontal"/> 
     <TextView android:text="" 
        android:id="@+id/movie_description" 
        android:layout_height="wrap_content" 
        android:textSize="16sp" 
        android:paddingTop="16sp" 
        android:paddingBottom="16sp" 
        android:layout_width="fill_parent"/> 

     <Button android:id="@+id/confirm" 
      android:text="@string/confirm" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 

    <android.gesture.GestureOverlayView 
     android:id="@+id/movie_gestures" 
     android:layout_width="fill_parent" 
     android:layout_height="0dip" 
     android:layout_weight="1.0" />   
    </LinearLayout> 
</ScrollView> 

它是正确的吗?应用程序不会对手势做出反应。 当时基于原有​​写我的代码:

public class MovieView extends Activity implements OnGesturePerformedListener { 
private GestureLibrary mLibrary; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
       ... 
     // gestures 
     mLibrary = GestureLibraries.fromRawResource(this, R.raw.spells); 
     if (!mLibrary.load()) { 
      finish(); 
     } 

     GestureOverlayView gestures = (GestureOverlayView) findViewById(R.id.movie_gestures); 
     gestures.addOnGesturePerformedListener(this); 
    } 

    public void onGesturePerformed(GestureOverlayView overlay, Gesture gesture) { 
     ArrayList<Prediction> predictions = mLibrary.recognize(gesture); 
     if (predictions.size() > 0 && predictions.get(0).score > 1.0) { 
      String action = predictions.get(0).name; 
      Toast.makeText(this, predictions.get(0).name, Toast.LENGTH_SHORT).show(); 

      if ("left".equals(action)) { 
        Log.i("", "left"); 
       } 
      else if ("right".equals(action)) { 
        Log.i("", "right"); 
       } 

      } 
     } 

但onGesturePerformed永远不会被调用。

+0

我不知道,但我不知道如果使用ScrollView令人困惑的事情,因为它将有自己的'手势'处理,以允许滚动。尝试你的布局只作为一个LinearLayout(摆脱ScrollView),看看是否有帮助。 – Squonk 2011-03-26 19:22:58

+0

@MisterSquonk,我试着用LinearLayout替换ScrollView - 它没有帮助。 – 2011-03-27 10:48:52

我用onFling代替。适用于ScrollView