일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SBS100
- W2453V
- OSD잠금해제
- error
- ClubMed
- Android
- 에러
- 안드로이드
- 기본 알람
- 인터넷우회
- git setup
- 가성비프로젝터
- mainthread
- LGFlatronOSD잠금해제
- 무음 설정
- askii
- OSDLock-loosening
- 눈꽃 사진
- Eclipse
- 실업급여 신청 방법
- OSD잠금
- LGFlatron
- 실업급여동영상퀴즈
- 실업급여온라인교육정답
- linux
- 리눅스
- 여행
- PJM-F3000
- 직무 역량
- 머시멜로
Archives
- Today
- Total
JJ's blog
[Android] EditText 글자 길이 제한 본문
- xml 정의 옵션
android:maxLength=""
- java 소스
final int MAX_LENGTH = 10;
EditText editText = (EditText) findViewById(R.id.editText);
InputFilter[] inputFilter = new InputFilter[1];
inputFilter[0] = new InputFilter.LengthFilter(MAX_LENGTH);
editText.setFilters(inputFilter);
'Technology > Android' 카테고리의 다른 글
ConcurrentModificationException (0) | 2017.02.17 |
---|---|
[Android] WebView와 메모리에 관하여 (0) | 2016.12.23 |
Android, Handler, Thread, Looper, Message (0) | 2016.05.30 |
Refreshing external folders (0) | 2016.05.25 |
Configuring Android Studio: IDE & VM Options, JDK, etc (0) | 2016.05.24 |
Comments