XML 소스에서 다음을 추가해주면 된다. android:inputType="" 속성은 number 양수 numberSigned 양수,음수 numberDecimal 양수 소수점 java 소스상에서는.setInputType(type) 속성은 android:inputTypeThe type of data being placed in a text field, used to help an input method decide how to let the user enter text. The constants here correspond to those defined by InputType. Generally you can select a single value, though some can be combined tog..
기본적으로 이클립스에 안드로이드 버전 4.0 이상이 설치되어 있는것을 전재로 합니다. 그럼 우선 안드로이드를 설치해야 하니 http://opencv.org/ 여기로 가셔서 다음과 같이 안드로이드용 OpenCV를 다운로드 합니다. 다 하시면 압축풀고 이클립스에 프로젝트를 다 등록시킵시다. OpenCV 2.4.2 기준으로 라이브러리 한개, 샘플 4개, 튜토리얼 5개가 등록되었네요. 근데 보심 다음과 같은곳에서 에러가 뜰겁니다. 그리고 다른 프로젝트들도 에러가 계속 뜹니다. 요건 프로젝트에 우클릭 하셔서 프로퍼티로 들가서 안드로이드 탭으로 갑니다.거기서 타겟설정에서 안드로이드 최신상태로 하고 is library탭에 체크합니다. 다음과 같이 하면 우선 에러는 사라질겁니다. 그리고 API 버전이 낮아도 에러가 뜬..
import java.util.Scanner; public class Sosusum { public static void main(String[] args) { System.out.println("입력돈 숫자까지의 소수 구하기"); System.out.print("입력 : "); int inNum = 0; Scanner scan = new Scanner(System.in); inNum = scan.nextInt(); // ------------------------------ // 입력된 숫자까지의 소수 구하기 // ------------------------------ for (int i = 2; i