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{
try{
startActivity(intent);
}catch(ActivityNotFoundException e){
util.showLongToast("해당파일을 실항할 수 있는 어플리케이션이 없습니다.\n파일을 열 수 없습니다.");
e.printStackTrace();
}
반응형
'IT 개발' 카테고리의 다른 글
[Android] 문자열로 Resource 가져오기 (1) | 2011.03.17 |
---|---|
[Android 팁] 한글 Logcat보기 (0) | 2011.03.17 |
[Android 개발팁] 어플 Install시 저장공간 선택(SD카드에 저장하게 만들기) (0) | 2011.02.24 |
[Android 팁(java)] Integer to String (0) | 2011.02.21 |
[Android 팁] URL에 공백과 한글이 같이 있을때 (0) | 2011.02.17 |
댓글