Digital Recipe

EditText에 숫자만 입력하기 본문

프로그래밍/자바/안드로이드

EditText에 숫자만 입력하기

노리터 2010. 12. 24. 17:43

XML의 android:inputType="" 으로 설정가능합니다. 

속성은
number 양수 
numberSigned 양수,음수 
numberDecimal 양수 소수점 
 | 연산자를 통해 두가지 속성을 같이 적용할 수 있습니다. 

numeric 으로도 설정이 가능한데, 그것보단 inputType을 권장
Comments