코딩하는 일용직 노동자

File Exploler 라이브러리 본문

안드로이드

File Exploler 라이브러리

bacass 2020. 5. 3. 17:22

앱에서 파일 첨부하는 기능을 구현하던중 Intent.createChooser 로 구현했더니 파일을 선택하더라도 파일의 정보가 앱으로 리턴되지 않는 경우가 있었습니다. 
(특정 파일 탐색기 앱에서만 선택된 파일의 정보가 리턴되었다.)

​쓸만한 파일탐색기 라이브러리를 찾아서 사용해보니 개발기간도 많이 단축할 수 있었고 편리하게 이용할 수 있었습니다.

https://github.com/hedzr/android-file-chooser

 

hedzr/android-file-chooser

a lightweight file/folder chooser or picker. Contribute to hedzr/android-file-chooser development by creating an account on GitHub.

github.com

 

- 앱내에서 .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-file-chooser 가 실행
실행모습

'안드로이드' 카테고리의 다른 글

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