码迷,mamicode.com
首页 > 移动开发 > 详细

Android手势的识别

时间:2015-12-14 12:35:48      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:手势识别

 手势保存了就可以开始识别了。

 

// 从资源文件中将手势库加载进来
		if (mGre == null) {
			Log.e("", "手势");
			mGre = GestureLibraries.fromRawResource(this, R.raw.yl_yl);
			// 无此句出错
			mGre.load();
		}
		// 从xml中取出GestureOverlayView控件
		mGov = (GestureOverlayView) findViewById(R.id.gesture);
		mGov.setGestureColor(Color.BLACK);// 手势颜色
		mGov.setGestureStrokeWidth(15);// 手势宽度
		// 为GestureOverlayView控件添加监听
		mGov.addOnGesturePerformedListener(this);

开始识别:

// 识别手势,返回一个类型为Prediction的列表
		ArrayList<Prediction> gestureList = mGre.recognize(gesture);
		if (gestureList.size() > 0) {
			Prediction pd = gestureList.get(0);
			// 如果匹配度大于1,表示可以识别,否则提示无法识别
			if (pd.score > 3) {
				// 判断名字是否与手势库的名字相同
				if (pd.name.equals("勾")) {
					Intent intent = new Intent(MainActivity.this,
							SecondActivity.class);
					startActivity(intent);
					Toast.makeText(MainActivity.this, "已识别", Toast.LENGTH_SHORT)
					.show();
				} else {
					Toast.makeText(MainActivity.this, "名字不匹配",
							Toast.LENGTH_SHORT).show();
				}
			} else {
				Toast.makeText(MainActivity.this, "无法识别", Toast.LENGTH_SHORT)
				.show();
			}
		}

最后别忘了解绑监听:

protected void onDestroy() {
		mGov.removeOnGesturePerformedListener(this);
		super.onDestroy();
	}


Android手势的识别

标签:手势识别

原文地址:http://10976921.blog.51cto.com/10966921/1722713

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