尝试在我的应用程序中实现左右手势。
这是我的布局:
<?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>
这是对的吗?应用程序不会对手势做出反应。 是根据原始tutorial编写我的代码:
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 :(得分:1)
我使用onFling
代替。适用于ScrollView
。