- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
@Override
public boolean onTouchEvent(MotionEvent e) {
x=(int)e.getX(); y=(int)e.getY();
/* ... */
synchronized(this) {
try {this.wait(1000);}
catch (InterruptedException ex) {}
}
return true;
}
/* Gets (screen/pixel) x,y coordinates of last touch event*/
public boolean GetCoordinates(MutablePoint coordinates) {
if (x==-1) return false;
coordinates.init(x,y);
return true;
}
bormand 20.08.2012 21:12 # +2
krypt 20.08.2012 21:50 # +4
Lure Of Chaos 21.08.2012 06:13 # +3
и да, wait это не sleep, обратите внимание.
bormand 21.08.2012 08:19 # 0
wildscliss 21.08.2012 10:14 # 0
Lure Of Chaos 23.08.2012 03:05 # +2
someone 23.08.2012 06:50 # 0
Зачем? Зачем вообще MutablePoint? И почему GetCoordinates, а не getCoordinates? Почему бы не
Мистер Хэнки 29.08.2012 05:35 # +3
ага, спасибо что дал координаты