Android Gesture 手勢建立以及使用示例

陽陽的部落格發表於2015-07-14

在Android1.6的模擬器裡面預裝了一個叫Gestures Builder的程式,這個程式就是讓你建立自己的手勢的(Gestures Builder的原始碼在sdk問samples裡面有,有興趣可以看看)

將上面這四個檔案複製到你的工程目錄下面,如圖所示

在模擬器上面執行這個工程檔案,在模擬器上面建立一些手勢檔案,例如:

建立的手勢將被儲存到/mnt/sdcard/gestures裡面,然後新建一個測試的手勢專案檔案,將gestures檔案複製到res目錄中的raw檔案下面,

然後配置xml檔案,xml配置如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.xunfang.gesture.MainActivity" >

    <android.gesture.GestureOverlayView 
        android:id="@+id/gv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#000000"
        android:gestureStrokeWidth="10"
        android:gestureColor="#ff0000"
        />

</RelativeLayout>

GestureOverlayView:一種用於手勢輸入的透明覆蓋層,可覆蓋在其他控制元件的上方,也可包含其他控制元件。
Android:gestureStrokeType 定義筆畫(定義為手勢)的型別
Android:gestureStrokeWidth 畫手勢時,筆劃的寬度
activity檔案內容如下
package com.xunfang.gesture;

import java.util.ArrayList;

import android.app.Activity;
import android.content.Intent;
import android.gesture.Gesture;
import android.gesture.GestureLibraries;
import android.gesture.GestureLibrary;
import android.gesture.GestureOverlayView;
import android.gesture.Prediction;
import android.net.Uri;
import android.os.Bundle;
import android.view.MotionEvent;
import android.widget.Toast;

public class MainActivity extends Activity {

    private GestureOverlayView gv ;

    private boolean loadStatus ;

    private GestureLibrary gestureLibrary ;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //拿到控制元件
        gv = (GestureOverlayView) findViewById(R.id.gv) ;

        //建立載入手勢庫的工具
        gestureLibrary =  GestureLibraries.fromRawResource(this, R.raw.gestures) ;
        //載入手勢庫
        loadStatus = gestureLibrary.load() ;

        //給gv控制元件加一個監聽器
        //OnGesturePerformedListener監聽器監聽一種手勢(一筆畫完)
        gv.addOnGesturePerformedListener(new GestureOverlayView.OnGesturePerformedListener(){

            @Override
            public void onGesturePerformed(GestureOverlayView overlay,
                    Gesture gesture) {

                //如果手勢庫載入成功
                if(loadStatus){
                    //識別手勢  Prediction是一個相似度物件,集合中的相似度是從高到低進行排列
                     ArrayList<Prediction> pres = gestureLibrary.recognize(gesture) ;
                     if(!pres.isEmpty()){
                         //拿到相似度最高的物件
                         Prediction pre = pres.get(0) ;
                         //用整型的數表示百分比  >60%
                         if(pre.score > 6){
                             //拿到手勢的名字判斷進行下一步邏輯
                             if("94".equals(pre.name)){
                                 //說明想關掉當前的activity
                                 finish() ;
                             }else if("yes".equals(pre.name)){
                                 //說明想打電話了
                                 Intent intent = new Intent() ;
                                 intent.setAction(Intent.ACTION_CALL) ;
                                 intent.setData(Uri.parse("tel://110")) ;
                                 startActivity(intent) ;
                             }else if("666".equals(pre.name)){
                                 //說明你想彈一個土司
                                 Toast.makeText(MainActivity.this, "哈哈,我彈出來了", 0).show() ;
                             }
                         }else{
                             Toast.makeText(MainActivity.this, "手勢不匹配", 0).show() ;
                         }
                     }else{
                         Toast.makeText(MainActivity.this, "手勢庫載入失敗", 0).show() ;
                     }
                }
            }
        }) ;

這裡用到了撥打電話的介面,一定要新增許可權,如下圖所示

這裡之後程式碼就玩了,可以進行測試。

我輸入一個6

然後就彈出來了。表示驗證成功。

相關文章