Android手势操作(二)

简介: mainActivity如下: package cn.c; import java.io.File; import java.util.ArrayList; import android.

mainActivity如下:

package cn.c;
import java.io.File;
import java.util.ArrayList;
import android.app.Activity;
import android.gesture.Gesture;
import android.gesture.GestureLibraries;
import android.gesture.GestureLibrary;
import android.gesture.GestureOverlayView;
import android.gesture.GestureOverlayView.OnGesturePerformedListener;
import android.gesture.Prediction;
import android.os.Bundle;
import android.os.Environment;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnKeyListener;
import android.widget.Button;
import android.widget.EditText;
/**
 * 需求描述:
 * 在例子1的基础上增加手势识别.
 * 所以不用再写添加手势的步骤.
 * 错误总结:
 * 在手势识别的时候没有执行mGestureLibrary.load()
 * 导致mGestureLibrary.recognize()方法失败.
 * 该错误很类似于刚开始操作 SharedPreferences的时候
 * Editor没有执行commit()方法
 *
 */
public class MainActivity extends Activity {
    private EditText mEditText;
    private GestureOverlayView mGestureOverlayView;
    private GestureLibrary mGestureLibrary;
    private Gesture mGesture;
    private Button mSaveButton;
    private Button mResetButton;
    private String mGestureLibraryPath;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        init();
    }

	private void init() {
		mEditText = (EditText) findViewById(R.id.editText);
		mEditText.setOnKeyListener(new OnKeyListener() {
			public boolean onKey(View v, int keyCode, KeyEvent event) {
				if (mGesture!=null&&mEditText.getText().toString().length()>0) {
					mSaveButton.setEnabled(true);
				} else {
					mSaveButton.setEnabled(false);
				}
				return false;
			}
		});
		mGestureOverlayView = 
		(GestureOverlayView) findViewById(R.id.gestureOverlayView);
		mSaveButton = (Button) findViewById(R.id.saveButton);
		mSaveButton.setEnabled(false);
		mResetButton = (Button) findViewById(R.id.resetButton);
		//GestureLibrary文件的路径
		mGestureLibraryPath =
		Environment.getExternalStorageDirectory()+File.separator+"gesturesTest";
		//为GestureOverlayView添加监听事件
		mGestureOverlayView.addOnGesturePerformedListener(new GesturePerformedListenerImpl());
	}
	
	private class GesturePerformedListenerImpl implements OnGesturePerformedListener{
		public void onGesturePerformed(GestureOverlayView overlay,Gesture gesture) {
			// 加载该路径下的手势库.
			// 若不存在,则会在路径下创建一个手势库
			mGestureLibraryPath =
			Environment.getExternalStorageDirectory()+File.separator+"gesturesTest";
			mGestureLibrary = GestureLibraries.fromFile(mGestureLibraryPath);
			//加载手势库
			//一定要执行load()方法,否则recognize()没有用!
			if (mGestureLibrary.load()) {
				ArrayList<Prediction> predictionsList=mGestureLibrary.recognize(gesture);
				if (predictionsList.size()>0) {
					Prediction bestPrediction=predictionsList.get(0);
					if (bestPrediction.score>7.0) {
						 System.out.println("xxxx1111 该手势已经存在");
					}
				} else {
	              System.out.println("xxxx1111 该手势不存在");
				}
			} else {
				System.out.println("xxxx1111 加载手势库失败");
			}
			
		}
		
	}
	
}


main.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" >

    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/textView"
            android:layout_width="100dip"
            android:layout_height="wrap_content"
            android:text="手势的名称:" />

        <EditText
            android:id="@+id/editText"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:hint="在此输入" />
    </LinearLayout>
 <android.gesture.GestureOverlayView
     android:id="@+id/gestureOverlayView"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:layout_below="@id/linearLayout"
     android:layout_marginBottom="50dip"
     android:gestureStrokeType="multiple"
  />
  <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="50dip"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal" >
    <Button 
        android:id="@+id/saveButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:text="保存"
        />
     <Button 
        android:id="@+id/resetButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:text="重置"
        />
   </LinearLayout>
 
</RelativeLayout>


 

相关文章
|
Android开发
Android手势操作耍起来!
目录 前言 初步了解手势操作 六个重写方法 小栗子体验一下 别忘了双击事件 最后 前言 手势操作是Android交互当中至关重要的. 可以说, 如果一个软件没有好的手势操作, 就不能将其定义为移动端的软件.
1070 0
|
Android开发
Android手势操作(三)
mainActivity如下: package cn.c; import java.io.File; import java.util.ArrayList; import java.
756 0
|
Android开发
Android手势操作(一)
mainActivity如下: package cn.c; import java.io.File; import java.util.ArrayList; import java.
738 0
|
1月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
24天前
|
搜索推荐 前端开发 API
探索安卓开发中的自定义视图:打造个性化用户界面
在安卓应用开发的广阔天地中,自定义视图是一块神奇的画布,让开发者能够突破标准控件的限制,绘制出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战技巧,逐步揭示如何在安卓平台上创建和运用自定义视图来提升用户体验。无论你是初学者还是有一定经验的开发者,这篇文章都将为你打开新的视野,让你的应用在众多同质化产品中脱颖而出。
48 19
|
1月前
|
IDE Java 开发工具
移动应用与系统:探索Android开发之旅
在这篇文章中,我们将深入探讨Android开发的各个方面,从基础知识到高级技术。我们将通过代码示例和案例分析,帮助读者更好地理解和掌握Android开发。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和技巧。让我们一起开启Android开发的旅程吧!
|
24天前
|
JSON Java API
探索安卓开发:打造你的首个天气应用
在这篇技术指南中,我们将一起潜入安卓开发的海洋,学习如何从零开始构建一个简单的天气应用。通过这个实践项目,你将掌握安卓开发的核心概念、界面设计、网络编程以及数据解析等技能。无论你是初学者还是有一定基础的开发者,这篇文章都将为你提供一个清晰的路线图和实用的代码示例,帮助你在安卓开发的道路上迈出坚实的一步。让我们一起开始这段旅程,打造属于你自己的第一个安卓应用吧!
52 14
|
27天前
|
Java Linux 数据库
探索安卓开发:打造你的第一款应用
在数字时代的浪潮中,每个人都有机会成为创意的实现者。本文将带你走进安卓开发的奇妙世界,通过浅显易懂的语言和实际代码示例,引导你从零开始构建自己的第一款安卓应用。无论你是编程新手还是希望拓展技术的开发者,这篇文章都将为你打开一扇门,让你的创意和技术一起飞扬。