Programming/Android

[Android] Multi Touch Event Count

Fimtrus 2013. 3. 6. 14:46
public boolean onTouch(View v, MotionEvent m) {
       int pointerCount = m.getPointerCount();
       int pointerId = m.getPointerId(0);
       return true;
 }

'Programming > Android' 카테고리의 다른 글

[Android] 이미지 합성(Watermark)  (0) 2013.03.12
[Android] Dialog 위치 이동.  (0) 2013.03.07
Nexus ICS 이상 급들 하단바 숨기기.  (0) 2013.02.25
[Android] Download Native Sources.  (1) 2013.02.22
[Android] 진동 제어.  (0) 2013.02.21