1

我运行 Gestures Builder 应用程序,为左右滑动创建了手势文件并编写了以下代码:

public class MainActivity extends Activity implements OnGesturePerformedListener {

    private GestureLibrary mGestureLibrary;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        GestureOverlayView gestureOverlayView = new GestureOverlayView(this);
        View inflate = getLayoutInflater().inflate(R.layout.main, null);
        gestureOverlayView.addView(inflate);
        gestureOverlayView.addOnGesturePerformedListener(this);
        mGestureLibrary = GestureLibraries.fromRawResource(this, R.raw.gestures);
        if (mGestureLibrary == null) {
            finish();
        }

        setContentView(gestureOverlayView);
    }

    @Override
    public void onGesturePerformed(GestureOverlayView overlay, Gesture gesture) {
        ArrayList<Prediction> predictions = mGestureLibrary.recognize(gesture);

        for (Prediction prediction : predictions) {
            if (prediction.score > 1.0) {
                Toast.makeText(this, prediction.name, Toast.LENGTH_SHORT).show();
            }
        }
    }
}

手势在 /raw/ 中,但是当我尝试测试它时应用程序什么也没说(它成功加载手势,调用了 onGesturePerformed 事件,但无法识别手势)。手势在 Gestures Buileder 中完美运行,那么我的错误在哪里?

4

2 回答 2

0

您仍然需要检查预测的名称,该名称应与您的一项操作的名称相匹配。测试是否相等,然后执行您的逻辑:

String action = predictions.get(0).name;
 if("right".equals(action){
}
于 2012-02-06T17:42:01.133 回答
0

在使用它之前,您可能需要在 mGestureLibrary 上调用 load()。并不是说它根本没有记录,但这就是 Lars 在这个例子中所做的,它对我有用:http ://www.vogella.com/articles/AndroidGestures/article.html

在 IDE 中,您应该能够看到 GestureStore HashMap (mNamedGestures) 中的条目。

于 2012-07-12T15:57:30.447 回答