码迷,mamicode.com
首页 > 其他好文 > 详细

手势识别(GestureOverlayView)

时间:2016-08-07 23:19:17      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

1.1.手势识别(GestureOverlayView)

技术分享

?  创建手势库

?  导入SDK中的工程

android-sdk-windows\samples\android-10\GestureBuilder。这个工程不能直接导入,需要添加三个配置文件:.classpath.projectdefault.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();

             }

   }

});

 





手势识别(GestureOverlayView)

标签:

原文地址:http://www.cnblogs.com/ywq-come/p/5747418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!