Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 스트링
- crowdin
- 필터
- Notepad++
- Nick
- 한글화
- HWP
- PC통신
- 한국어
- 크라우딘
- 티스토리챌린지
- 無限想像
- 스트림
- 아래한글
- ∞
- 거르개
- 리브레오피스
- 조선어
- 눈금자
- 오블완
- infinite imagination
- 문화주권
- 소원성취
- 0 + 0
- poedit
- 이제된다
- 연변
- 조선족
- freenode
- 닉 등록
Archives
- Today
- Total
DreamFactory7
안드로이드개발.터치이벤트안될때 본문
문제 :
public boolean onTouchEvent(MotionEvent event) {
int action = event.getAction();
switch(action){
case MotionEvent.ACTION_DOWN:
break;
case MotionEvent.ACTION_MOVE:
break;
case MotionEvent.ACTION_UP:
break;
default :
break;
}
//return super.onTouchEvent(event); //#1
return true; //#2
}
#1처럼쓰면 DOWN이벤트만 된다.
해결 :
안드로이드에서 터치이벤트를 처리하는데 대부분 위와같은 코드를 쓸것이다
그런데 #1처럼쓰며면 MotionEvent.ACTION_DOWN만 작동된다.
따라서 #2처럼 쓰면 MOVE와 UP이 작동된다.
이유 :
잘모르겠음
'삽질 > Android' 카테고리의 다른 글
안드로이드 오류 Caused by: java.lang.NoSuchMethodException: 생성자(Context,AttributeSet) (0) | 2013.05.02 |
---|