본문 바로가기

전체보기1363

[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.
[Android 개발팁] 어플 Install시 저장공간 선택(SD카드에 저장하게 만들기) 어플 개발 시 저장공간을 정하려면 manifest 파일에 설정을 해두면 된다. 예) - preferExternal : 설치시 외장메모리에 설치 합니다. 외장메모리의 용량이 부족하거나 2.2버전 미만일경우에는 내장에 설치 됨. - auto : 자동으로 설치 경로를 찾습는것 같습니다. 저같은 경우는 내장으로 먼저 가네요. 사용자가 내장에 설치된 어플을 외장으로 옮길 수 있습니다. 어플을 외장메모리로 옮기는 방법 환경설정 > 응용프로그램 관리 > 해당 어플 선택 > SD카드로 이동 참고로 몇몇 어플들은 외장메모리 이동이 지원이 되질 않습니다.(알람이나 라이브 배경화면 같은..) 참고 : http://developer.android.com/guide/appendix/install-location.html 2011. 2. 24.
[Android 팁(java)] Integer to String 1. Integer.parseInt( String ); 2. Interger integer = 10;String str = "" + integer; 2011. 2. 21.
[Android 팁] URL에 공백과 한글이 같이 있을때 URI에 한글과 공백이 함께있을 때는 아래와 같이 URI를 가공해 주면 됩니다. 이것 역시 무지 귀찮은 작업이지만 어쩔 수 없죠.ㅠ String sUrl=""; String eUrl=""; sUrl = url.substring(0, url.lastIndexOf("/")+1); eUrl = url.substring(url.lastIndexOf("/")+1, url.length()); // 한글과 공백을 포함한 부분 eUrl = URLEncoder.encode(eUrl,"EUC-KR").replace("+", "%20"); url = sUrl+ eUrl; 2011. 2. 17.
반응형