Come ho detto sul titolo, l'app ha anche ScrollView
e GestureDetector
. Al di fuori degli eventi touch di ScrollView, GestureDetector gestisce le azioni di scorrimento come da sinistra a destra e da destra a sinistra. Stanno tutti lavorando bene.Utilizzo di GestureLibrary con ScrollView
Ora voglio aggiungere un GestureLibrary
-Io grezzo a Attività. Ho guardato diverse fonti e in qualche modo aggiunto correttamente. Semplicemente, il layout simile a questo:
<android.gesture.GestureOverlayView
android:id="@+id/gOverlay"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ScrollView
android:id="@+id/content_scroll"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="none">
</ScrollView>
<!-- Other views -->
</android.gesture.GestureOverlayView>
E 'il disegno come avrei voluto (linea gialla), ma non è innescare alcun metodo. Ecco come ho implementato OnGesturePerformedListener
:
/*
* Gestures
*/
gLibrary = GestureLibraries.fromRawResource(this, R.raw.gestures);
if (!gLibrary.load()) { finish(); }
GestureOverlayView gestureOverlayView = (GestureOverlayView) findViewById(R.id.gOverlay);
gestureOverlayView.addOnGesturePerformedListener(gestureListener);
Ed ecco gestureListener
:
private OnGesturePerformedListener gestureListener = new OnGesturePerformedListener() {
public void onGesturePerformed(GestureOverlayView overlay, Gesture gesture) {
ArrayList<Prediction> predictions = gLibrary.recognize(gesture);
if (predictions.size() > 1) {
for(Prediction prediction: predictions){
Log.d("Test", "Looking for gestures");
}
}
}
};
Questo è tutto. Dalla parete, ho provato questo codice sorgente con diverse attività che non hanno ScrollView e funzionano bene.
Infine, non sono sicuro si tratta GestureDetector, così che è come app con rilevatore:
public boolean dispatchTouchEvent(MotionEvent ev) {
if (detector != null) {
if (detector.onTouchEvent(ev)) {
return true;
}
}
return super.dispatchTouchEvent(ev);
}
E il mio SwipeDetector
:
private class SwipeDetector extends SimpleOnGestureListener {
private static final int SWIPE_MIN_DISTANCE = 120;
private static final int SWIPE_MAX_OFF_PATH = 250;
private static final int SWIPE_THRESHOLD_VELOCITY = 200;
public boolean onFling(android.view.MotionEvent e1, android.view.MotionEvent e2, float velocityX, float velocityY) {
if(Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH) { return false; }
if(e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) { return false; }
if(e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) { filterButton.performClick();return true; }
return false;
}
}
Cosa c'è di sbagliato con il mio approccio?
che cos'è quel "rilevatore"? è l'oggetto SwipeDetector? –
@RahulHawge, il "rilevatore" è l'oggetto GestureDetector. – strizzwald