본문 바로가기
반응형

분류 전체보기205

How to Create QuickAction Dialog in Android http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/ 2010. 11. 29.
구글맵 맵상에서 거리구하기 지구는 둥구니까 지도상에서 거리구하는것이 아주 복잡하다. Area(GeoPoint c,GeoPoint r) { this.c = c; this.r= r; Location lc = new Location("gps"); lc.setLatitude(c.getLatitudeE6()/1E6); lc.setLongitude(c.getLongitudeE6()/1E6); Location lr = new Location("gps"); lr.setLatitude(r.getLatitudeE6()/1E6); lr.setLongitude(r.getLongitudeE6()/1E6); radius = lc.distanceTo(lr); } distanceTo함수를 사용하면 미터 단위로 값이 나오게된다. 그런데 구글맵에서는 확대 축소가.. 2010. 11. 24.
윈도우 비스타부터 심볼릭 링크(mklink) 기능을 자체 내장 출처 :: http://my.jhlabs.org/60 리눅스의 파일시스템에서 자체 지원하는 심볼릭 링크는 아주 유용한 기능이다. 이제 윈도우 비스타 및 Windows Server 2008에서도 심볼릭 링크 기능을 자체 내장하게 되었단다. 바로 mklink 명령어를 이용하면 된다. Description of 'mklink' commandC:\test>mklink Creates a symbolic link. MKLINK [[/D] | [/H] | [/J]] Link Target /D Creates a directory symbolic link. Default is a file symbolic link. /H Creates a hard link instead of a symbolic link. /J Creat.. 2010. 11. 17.
failed to find provider info for settings 확인 1. debug.keystore를 사용해 md5를 받고 apikey를 다시 받는다. keytool.exe -list -alias androiddebugkey -keystore debug.keystore -storepass android -keypass android (arg들을 똑같이 써준다) apikey를 받는다. http://code.google.com/android/maps-api-signup.html 2. lib과 permission 확인 3. 프로젝트를 clean하고 다시 생성 2010. 11. 17.