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
- 안드로이드 푸쉬
- FCM
- C# IO
- not working
- PHP
- 우분투
- xe
- php 시큐어코딩
- 폼메일
- soundpool
- curl
- UML
- WebView
- 안드로이드 gcm
- C#
- 설치
- 자동 생성
- php 취약점
- javascript
- dovecot
- Android
- 안드로이드
- Mail Server
- 안드로이드 푸시
- mysql
- android 효과음
- 자바스크립트
- roundcube
- chart.js
- html5
Archives
- Today
- Total
그러냐
안드로이드 확장자별 파일 열기 본문
반응형
public void showDocumentFile(String _strPath, String _strFileName)
{
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File(_strPath + "/" + _strFileName);
// 파일 확장자별 Mime Type을 지정한다.
if (_strFileName.endsWith("mp3"))
{
intent.setDataAndType(Uri.fromFile(file), "audio/*");
}
else if (_strFileName.endsWith("mp4"))
{
intent.setDataAndType(Uri.fromFile(file), "vidio/*");
}
else if (_strFileName.endsWith("jpg") || _strFileName.endsWith("jpeg") ||
_strFileName.endsWith("JPG") || _strFileName.endsWith("gif") ||
_strFileName.endsWith("png") || _strFileName.endsWith("bmp"))
{
intent.setDataAndType(Uri.fromFile(file), "image/*");
}
else if (_strFileName.endsWith("txt"))
{
intent.setDataAndType(Uri.fromFile(file), "text/*");
}
else if (_strFileName.endsWith("doc") || _strFileName.endsWith("docx"))
{
intent.setDataAndType(Uri.fromFile(file), "application/msword");
}
else if (_strFileName.endsWith("xls") || _strFileName.endsWith("xlsx"))
{
intent.setDataAndType(Uri.fromFile(file),
"application/vnd.ms-excel");
}
else if (_strFileName.endsWith("ppt") || _strFileName.endsWith("pptx"))
{
intent.setDataAndType(Uri.fromFile(file),
"application/vnd.ms-powerpoint");
}
else if (_strFileName.endsWith("pdf")) {
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
}
startActivity(intent);
}
출처: https://mixup.tistory.com/15 [투믹스 작업장]
반응형
'android' 카테고리의 다른 글
flutter android.support.v4.content does not exist, cannot find symbol ActivityCompat, ContextCompat (0) | 2020.06.18 |
---|---|
안드로이드 풀 스크린 모드 (0) | 2020.03.23 |
안드로이드 이미지 뷰 여백 없애기 (0) | 2019.07.11 |
Google Play 안전하지 않은 onReceivedSslError 경고 대응하기 (0) | 2019.02.27 |
안드로이드 웹뷰 모바일 뷰 로드 (0) | 2019.02.20 |