전체 글1366 [Android 팁] 구글맵에서 해당좌표 구하기 구글맵에 해당 위치로 이동하고 주소창에 javascript:void(prompt('',gApplication.getMap().getCenter())); 를 입력해서 좌표값을 구할 수 있음. 2011. 3. 24. [Android] 문자열로 Resource 가져오기 문자열로 해당 Resource (혹은 레이아웃에 포함된 View) 의 ID 값을 가져온다; ----------------------------------------------------------------- getResources().getIdentifier(파일명, 디렉토리명, 패키지명); 또는, getResources().getIdentifier(패키지명:디렉토리/파일명, null, null); 으로도 가능하다. ----------------------------------------------------------------- String resName = "@drawable/imgEnd"; String packName = this.getPackageName(); // 패키지명 int resID .. 2011. 3. 17. [Android 팁] 한글 Logcat보기 1. cmd 창 열기 2. chcp 65001 3. 폰트를 Lucida Console 로 변경. 4. adb logcat 2011. 3. 17. [Android 개발팁] 파일 다운로드 후 pdf파일 또는 hwp파일 열기. Intent intent = new Intent(); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(android.content.Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); if (file.getName().endsWith(".pdf")){ intent.setDataAndType(Uri.fromFile(file), "application/pdf"); }else if (file.getName().endsWith(".hwp")){ intent.setDataAndType(Uri.fromFile(file), "application/hwp"); } try{ star.. 2011. 3. 15. 이전 1 ··· 336 337 338 339 340 341 342 다음 반응형