我正在使用Gesture API和我创建的手势库,它运行得非常好。问题是我想在OnGesturePerformedListener退出后在屏幕上显示手势,而是删除手势。我想在OnGesturePerformedListener之后可能有一个事件 - 我可以在OnGesturePerformedListener中保存手势,然后在以后的事件中再次显示它。有谁知道是否有这样的事件?这是代码:
private OnGesturePerformedListener handleGestureListener = new OnGesturePerformedListener() {
@Override
public void onGesturePerformed(GestureOverlayView gestureView,
Gesture gesture) {
if (gesture.getStrokesCount() != 2){
setWonderEmoticon();
return;
}
ArrayList<Prediction> predictions = gLib.recognize(gesture);
// one prediction needed
if (predictions.size() > 0) {
Prediction prediction = predictions.get(0);
// checking prediction
if (prediction.score > 20.0) {
setHappyEmoticon();
}
else {
setWonderEmoticon();
}
}
}
};
顺便说一下,当从代码中删除setWonderEmoticon()和setHappyEmoticon()时,会发生同样的事情。
答案 0 :(得分:1)
以下示例适用于OnGesturePerformedListener
:
<强> MainActivity.java 强>:
// ...
public class MainActivity extends AppCompatActivity implements GestureOverlayView.OnGesturePerformedListener, GestureOverlayView.OnGestureListener {
GestureOverlayView mGestureView;
ImageView mImageView;
TextView mText;
Paint mPaint;
Bitmap mBitmap;
Canvas mCanvas;
GestureLibrary mGestureLib;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mImageView = (ImageView) findViewById(R.id.image_view);
mGestureView = (GestureOverlayView) findViewById(R.id.gesture_overlay);
mGestureView.addOnGesturePerformedListener(this);
mGestureView.addOnGestureListener(this);
mGestureView.setGestureColor(Color.BLACK);
mGestureView.setUncertainGestureColor(Color.BLACK);
mGestureView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
@Override
public void onGlobalLayout() {
mGestureView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
mBitmap = Bitmap.createBitmap(mGestureView.getWidth(), mGestureView.getHeight(), Bitmap.Config.ARGB_8888);
mCanvas = new Canvas(mBitmap);
}
});
mPaint = new Paint();
mPaint.setStyle(Paint.Style.STROKE);
mPaint.setStrokeWidth(12.0f);
mPaint.setColor(Color.GRAY);
mText = (TextView) findViewById(R.id.text);
mGestureLib = GestureLibraries.fromRawResource(getApplicationContext(), R.raw.gesture);
mGestureLib.load();
}
@Override
public void onGesturePerformed(GestureOverlayView gestureOverlayView, Gesture gesture) {
if (gesture.getStrokesCount() > 0) {
ArrayList<Prediction> predictions = mGestureLib.recognize(gesture);
for (GestureStroke stroke : gesture.getStrokes()) {
Path path = stroke.getPath();
mCanvas.drawPath(path, mPaint);
}
mImageView.setImageBitmap(mBitmap);
if (!predictions.isEmpty()) {
Prediction best = predictions.get(0);
mText.setText(String.format("Gesture: %s", best.name));
}
}
}
// ...
}
activity_main.xml (snapshot):
<?xml version="1.0" encoding="utf-8"?>
<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="onl.nok.gestures.MainActivity">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Waiting ..."
android:textSize="25sp" />
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/image_view" />
<android.gesture.GestureOverlayView
android:id="@+id/gesture_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gestureStrokeType="single"
android:fadeEnabled="false" />
</RelativeLayout>
如何应用新手势?
raw
:
<Project>/app/src/main/res/raw/
gesture.txt
:
/Android/data/pack.GestureApp/files/gesture.txt
raw
:
<Project>/app/src/main/res/raw/gesture.txt
最后我将源代码推送到GitHub:https://github.com/nok/android-gesture-libraries
第二次修改:
你是对的。所以我使用一个简单的ImageView
来绘制执行的手势。此外,您可以更改Paint类型的mPaint
中的样式。您可以在GitHub上的推送提交82eabfb和5ce427d中找到所有更改。