Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Gradle
- 에러
- build
- 레트로핏
- RecyclerView
- 안드로이드
- viewpager
- 유튜브
- Retrofit
- 안드로이드 스튜디오
- coroutine
- 웹뷰
- dart
- WebView
- 깃헙
- Android
- 코틀린
- 안스
- Github
- error
- MVVM
- image
- Kotlin
- 의존성주입
- 스튜디오
- ADB
- 안드로이드스튜디오
- 코루틴
- GIT
- studio
Archives
- Today
- Total
코딩하는 일용직 노동자
File Exploler 라이브러리 본문
앱에서 파일 첨부하는 기능을 구현하던중 Intent.createChooser 로 구현했더니 파일을 선택하더라도 파일의 정보가 앱으로 리턴되지 않는 경우가 있었습니다.
(특정 파일 탐색기 앱에서만 선택된 파일의 정보가 리턴되었다.)
쓸만한 파일탐색기 라이브러리를 찾아서 사용해보니 개발기간도 많이 단축할 수 있었고 편리하게 이용할 수 있었습니다.
https://github.com/hedzr/android-file-chooser
- 앱내에서 .pdf 파일만 찾는 기능을 구현한 소스입니다.
private fun openFileSelector() {
var dialog = ChooserDialog(context)
dialog.withStartFile(Environment.getExternalStorageDirectory().path)
dialog.withChosenListener { dir, dirFile ->
if (dir.endsWith(".pdf")) {
viewModel.uploadFile(File(dir), "application/pdf")
} else {
activity?.showCenterToast(getString(R.string.product_register_add_file_err))
}
}
dialog.withOnCancelListener {
dialog.dismiss()
}
dialog.build()
dialog.show()
}
'안드로이드' 카테고리의 다른 글
Android 10(Q) Scope Storage 에 관하여 (0) | 2020.05.05 |
---|---|
코틀린 ScopeFunction 종류와 역할 (0) | 2020.05.03 |
Wifi ADB 디버깅 방법 (0) | 2020.05.03 |
SSL 무시하기 처리. (0) | 2020.05.03 |
SMS Retriever (0) | 2020.05.03 |