안드로이드 개발(150)
-
구글 지도 안드로이드 API Version 1 지원 종료
Note: Version 1 of the Google Maps Android API has been officially deprecated as of December 3rd, 2012. This means that from March 18th, 2013 you will no longer be able to request an API key for this version. No new features will be added to Google Maps Android API v1. However, apps using v1 will continue to work on devices. Existing and new developers are encouraged to use Google Maps Android A..
2013.04.17 -
Service 개발 시에 유의 사항
1. 서비스에서 Alert Dialog 띄우기http://daddycat.blogspot.kr/2011/08/android-service-alerdialog.html 기본적으로 Service에서는 Alert Dialog를 띄울 수 없기 때문에 별도의 Activity를 만들어서 팝업으로 띄우는 방식이다. 2. Activity에서 Unbound 처리http://www.topappse.com/android-activity-has-leaked-service-connection Activity에서 Service와 bound를 했다면, onDestroy에서 Unbound 처리를 해주지 않으면 오류가 발생한다.
2013.03.28 -
Windows 7의 Command 창에서 keystore 생성 시에 액세스가 거부될 경우
http://stackoverflow.com/questions/6602422/access-denied-when-creating-keystore-for-android-app생성하는 파일명을 "c:\documents and settings\계정\키스토어이름.keystore"로 지정해주면 된다.Windows 7을 많이 쓰지 않아서인지 시스템 폴더에 접근 권한 제한이 있는 것은 처음 알았다.
2012.09.23 -
최신 버전 Eclipse, ADT, Android SDK 설치 후 기존 소스 가져오기 및 실행 문제
1. eclipse에서 invalid project description 메시지 발생http://gnuteam.tistory.com/37 소스 파일을 workspace 밖으로 이동한 다음,File-New-Android Project-Create Project from existing source에서소스 폴더를 선택하여 불러온다. 2. App 실행 시 외부 라이브러리 문제 발생http://www.androidpub.com/index.php?mid=android_dev_info&page=2&document_srl=2049579 Properties-Java Build Path-Order and Export Tab 선택 후,모든 항목의 Checkbox를 체크하고 OK 버튼을 누른다.Menu-Project-Cle..
2012.09.22 -
InputFilter를 이용한 입력 문자 제한
http://mini_wor1d.blog.me/150141442305 XML에서 type을 선택하는 방법보다 더 좋은 방법이다.
2012.09.06 -
MapView에 drawing 처리 방법
http://lhk3832.blog.me/10091002315 Overlay의 draw 메소드를 오버라이드해서 구현이 가능하다.
2012.07.12