Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- soundpool
- php 시큐어코딩
- 안드로이드
- html5
- 자바스크립트
- 안드로이드 gcm
- roundcube
- WebView
- curl
- FCM
- C#
- javascript
- chart.js
- android 효과음
- PHP
- 안드로이드 푸쉬
- 설치
- dovecot
- xe
- UML
- mysql
- php 취약점
- C# IO
- 폼메일
- 안드로이드 푸시
- Android
- not working
- Mail Server
- 우분투
- 자동 생성
Archives
- Today
- Total
그러냐
안드로이드 버튼 중복 클릭 방지 본문
반응형
https://stackoverflow.com/questions/5608720/android-preventing-double-click-on-a-button
findViewById(R.id.button).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// mis-clicking prevention, using threshold of 1000 ms
if (SystemClock.elapsedRealtime() - mLastClickTime < 1000){
return;
}
mLastClickTime = SystemClock.elapsedRealtime();
// do your magic here
}
}
반응형
'android' 카테고리의 다른 글
[Android] WebView와 메모리에 관하여 (0) | 2018.04.05 |
---|---|
세션 공유 (0) | 2017.12.04 |
intent 값 전달 (0) | 2017.11.09 |
[안드로이드 HTTP 통신] HttpURLConnection으로 웹서버 통신하기 (0) | 2017.11.09 |
qr 코드 스캐너 커스터마이징 (0) | 2017.11.09 |