Android手势识别

第一步:建立手势库

使用SDK自带例子GestureBuilder建立手势库(位置:android-sdk-windows\samples\android-8\GestureBuilder)。使用GestureBuilder之前,你需要恢复其到开发环境,然后进行编绎并部署到手机上。此时,就可以使用GestureBuilder建立手势库,生成的手势库文件在SCDard上,默认文件名称为:gestures

第二步:在应用中加载手势库文件,然后开发手势识别代码。

把手势库文件gestures文件拷贝到项目的res/raw目录下。然后在布局文件中添加用于手势绘制的View:

 

    android:id="@+id/gestures"

    android:layout_width="fill_parent“ android:layout_height="0dip"

    android:layout_weight="1.0" />

为View添加手势监听事件:gestureOverlayView.addOnGesturePerformedListener();

得到手势库:mLibrary = GestureLibraries.fromRawResource(this, R.raw.gestures);

加载手势库:mLibrary.load();

List predictions = mLibrary.recognize(gesture);//从手势库中查询匹配的内容,匹配的结果可能包括多个相似的内容,匹配度高的结果放在最前面

大多数情况下,手势都是通过一笔完成。然而有一些特别的需求就需要通过多个笔画来实现,这时可以使用gestureStrokeType属性进行设置:android:gestureStrokeType="multiple"

 

String文件

view plain
  1. xml version="1.0" encoding="utf-8"?>  
  2. <resources>  
  3.   
  4.     <string name="app_name">GestureTeststring>  
  5.     <string name="notrecognize">不能识别该手势string>  
  6.     <string name="noprediction">手势识别率太低,请重新输入string>  
  7.   
  8. resources>  


 

布局文件

view plain
  1. xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <android.gesture.GestureOverlayView   
  8.         android:id="@+id/myGestureView"  
  9.         android:layout_width="fill_parent"  
  10.         android:layout_height="0dip"  
  11.         android:layout_weight="1.0"  
  12.         />  
  13.   
  14. LinearLayout>  


 

Java文件

view plain
  1. package cn.class3g.gesture;  
  2.   
  3. import java.util.ArrayList;  
  4.   
  5. import android.app.Activity;  
  6. import android.content.Intent;  
  7. import android.gesture.Gesture;  
  8. import android.gesture.GestureLibraries;  
  9. import android.gesture.GestureLibrary;  
  10. import android.gesture.GestureOverlayView;  
  11. import android.gesture.GestureOverlayView.OnGesturePerformedListener;  
  12. import android.gesture.Prediction;  
  13. import android.net.Uri;  
  14. import android.os.Bundle;  
  15. import android.util.Log;  
  16. import android.widget.Toast;  
  17.   
  18. public class GestureTestActivity extends Activity {  
  19.   
  20.     GestureOverlayView getstureView;  
  21.     GestureLibrary gLibrary;  
  22.     boolean loadState = true;  
  23.   
  24.     public void onCreate(Bundle savedInstanceState) {  
  25.         super.onCreate(savedInstanceState);  
  26.         setContentView(R.layout.main);  
  27.   
  28.         init();  
  29.   
  30.     }  
  31.   
  32.     private void init() {  
  33.         getstureView = (GestureOverlayView) this  
  34.                 .findViewById(R.id.myGestureView);  
  35.         getstureView  
  36.                 .addOnGesturePerformedListener(new MyOnGesturePerformedListener());  
  37.   
  38.         // 创建手势库对象GestureLibrary  
  39.         gLibrary = GestureLibraries.fromRawResource(this, R.raw.gestures);  
  40.         // 加载手势库资源  
  41.         loadState = gLibrary.load();  
  42.   
  43.     }  
  44.   
  45.     private final class MyOnGesturePerformedListener implements  
  46.             OnGesturePerformedListener {  
  47.   
  48.         public void onGesturePerformed(GestureOverlayView overlay,  
  49.                 Gesture gesture) {  
  50.             if (loadState) {  
  51.                 ArrayList predictions = gLibrary.recognize(gesture);  
  52.   
  53.                 if (!predictions.isEmpty()) {  
  54.                     Prediction prediction = predictions.get(0);  
  55.   
  56.                     Log.i("TAG", String.valueOf(prediction.score));  
  57.   
  58.                 if (prediction.score > 5) {//如果是1的话太容易失败,本人测试5比较合适  
  59.                         if ("close".equals(prediction.name)) {  
  60.                             finish();//实现关闭功能,用的是activity自带的  
  61.                         } else if ("dialto".equals(prediction.name)) {  
  62.                             //实现播出固定电话的功能,记得添加权限  
  63.                             Intent intent = new Intent(Intent.ACTION_CALL,  
  64.                                     Uri.parse("tel:13333333333"));  
  65.                             startActivity(intent);  
  66.                         }  
  67.                     }  
  68.   
  69.                 } else {  
  70.                     showToast(R.string.notrecognize);  
  71.                 }  
  72.   
  73.             } else {  
  74.                 showToast(R.string.noprediction);  
  75.             }  
  76.   
  77.         }  
  78.   
  79.     }  
  80.   
  81.     private void showToast(int resId) {  
  82.         Toast.makeText(this, resId, Toast.LENGTH_LONG).show();  
  83.     }  
  84. }  


你可能感兴趣的:(点滴积累)