Korrigier mich wenn ich falsch liege, aber Dein Start-Intent arbeitet bei "rechts" ein RECHTS ab.
- @Override
- public void right(int index, float oldx, float oldy, float x, float y) {
- super.right(index, oldx, oldy, x, y);
und wenn ich mir das Konstrukt davor anschaue
- @Override
- public void left(int index, float oldx, float oldy, float x, float y) {
- super.right(index, oldx, oldy, x, y);
- Log.d("Coustom Controller", "Left: " + index);
arbeitet er bei "links" ein RECHTS ab .....
Muss das so ???
Gruß Carsten