일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- crowdin
- 無限想像
- poedit
- 닉 등록
- 0 + 0
- 오블완
- 스트림
- HWP
- 한국어
- 눈금자
- 이제된다
- 아래한글
- 연변
- Notepad++
- 거르개
- 리브레오피스
- 소원성취
- 조선족
- infinite imagination
- Nick
- 티스토리챌린지
- ∞
- 문화주권
- 조선어
- 스트링
- PC통신
- 한글화
- freenode
- 필터
- 크라우딘
- Today
- Total
목록삽질/Android (2)
DreamFactory7
제목 : 안드로이드 오류 Caused by: java.lang.NoSuchMethodException: 생성자(Context,AttributeSet)05-02 04:12:50.088: E/AndroidRuntime(338): FATAL EXCEPTION: main 05-02 04:12:50.088: E/AndroidRuntime(338): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.a05_2_1/com.example.a05_2_1.MainActivity}: android.view.InflateException: Binary XML file line #17: Error inflating class com.ex..
문제 : 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만 작동된다. ..