[Android 개발팁] 파일 다운로드 후 pdf파일 또는 hwp파일 열기.


[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..


원문링크 : [Android 개발팁] 파일 다운로드 후 pdf파일 또는 hwp파일 열기.