无论如何从使用gesturebuilder创建的手势库中获取手势ID列表,然后将它们链接到存储在数组中的图像。图像用于添加到手势覆盖视图中,以便显示。
我想将每个手势链接到图像,因此需要某种 id 或名称。我查看了有关手势的示例和其他在线资料,但没有关于此问题的信息。
在这件事上的任何帮助将不胜感激。
例子:
//Link the images to the gesture ids, so when a user draws an "a", //it is linked to the gesture "a" if (sStore.load()) { for (String name : sStore.getGestureEntries()) { //Stores the gesture and its name into Gesture gesture for (Gesture gesture : sStore.getGestures(name)) { gesture.getID(); //link IDs to image_array[i] } } } //match the image and the gesture, after a touch event. if (predictions.size() > 0) { Prediction prediction = predictions.get(0); if(prediction.score > 1.0) { if(prediction.best_score == Current_Image) { Correct(); Next_image(); } } }