标签:

?  创建手势库
?  导入SDK中的工程
android-sdk-windows\samples\android-10\GestureBuilder。这个工程不能直接导入,需要添加三个配置文件:.classpath、.project、default.properties或者可以直接通过new-android project from
existing code,创建工程。
?  将工程部署到手机中,创建手势库
手势库会存储在手机SD卡的根目录,文件名为:gestures
?  代码
将gestures放入res/raw文件夹下
<android.gesture.GestureOverlayView
    android:id="@+id/gov"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
android:gestureStrokeType="multiple" />
GestureOverlayView gov =
(GestureOverlayView) findViewById(R.id.gov);
final GestureLibrary library = GestureLibraries.fromRawResource(this, R.raw.gestures);//加载手势库文件
library.load();
gov.addOnGesturePerformedListener(new
OnGesturePerformedListener() {
   public void
onGesturePerformed(GestureOverlayView overlay, Gesture gesture) {
      ArrayList<Prediction>
list = library.recognize(gesture);
      for (Prediction
p : list)
          System.out.println(p.name + ": " + p.score);
      //for外边,如果获取的第一个Prediction语言,的score大于4,则认为是已识别。
      //第一个是分数最大的,所以只去第一个即可。
          Prediction
p=recognize.get(0);
             if(p.score>4){
                Toast.makeText(getApplicationContext(),
p.name, Toast.LENGTH_SHORT).show();
             }else {
                Toast.makeText(getApplicationContext(),
"未识别", Toast.LENGTH_SHORT).show();
             }
   }
});
标签:
原文地址:http://www.cnblogs.com/ywq-come/p/5747418.html