Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- not working
- mysql
- javascript
- Mail Server
- 안드로이드
- 설치
- C# IO
- PHP
- chart.js
- 안드로이드 gcm
- UML
- 안드로이드 푸쉬
- C#
- html5
- php 취약점
- Android
- 우분투
- soundpool
- php 시큐어코딩
- curl
- 자동 생성
- 안드로이드 푸시
- 폼메일
- dovecot
- 자바스크립트
- xe
- android 효과음
- FCM
- roundcube
- WebView
Archives
- Today
- Total
목록MIME (1)
그러냐
intent 파일 띄우기(pdf, ppt, doc, hwp 등) ActivityNotFoundException
Uri path = Uri.parse(url); Intent pdfIntent = new Intent(Intent.ACTION_VIEW); pdfIntent.setDataAndType(path, "application/pdf"); pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); try { startActivity(Intent.createChooser(pdfIntent, "Open")); } catch (Exception e) { } 이런 식으로 pdf를 intent로 띄운다. webview에서 띄울 때 주로 사용했었다 그런데 ppt나 기타 파일 확장자 같은경우 아래 블로그에서 잘 설명된 것처럼 application/pdf 이부분을 확장자에 맞게 설정하여 띄우면..
android
2020. 10. 21. 16:46