Nuke Olaf - Log Store

[Android] 안드로이드 - 내가 원하는 라이브러리 찾기 (image picker) 본문

Android

[Android] 안드로이드 - 내가 원하는 라이브러리 찾기 (image picker)

NukeOlaf 2020. 1. 8. 15:02

카메라앱의 앨범 액티비티 (갤러리 액티비티)를 만들기 위해 라이브러리를 사용해야 했다.

키워드는 image picker. 

 

안드로이드 용 api 라고 검색하면 나오는 image picker

https://developers.google.com/android/reference/com/google/android/gms/cast/framework/media/ImagePicker

 

앨범 액티비티를 만들기 위해 어떤 라이브러리를 선택할지 고민해야 했다.

 

1. Android Arsenal 이라는 사이트는 내가 원하는 라이브러리를 찾기 쉽도록 도와준다

Android Arsenal 링크 : https://android-arsenal.com/free

https://www.androidpolice.com/2014/05/20/for-developers-new-website-the-android-arsenal-links-to-hundreds-of-great-libraries-and-tools-for-app-development/

 

그래서 위의 사이트에서 image picker 라이브러리들을 검색해보았다

https://android-arsenal.com/tag/157

 

A categorized directory of libraries and tools for Android | Android-Arsenal.com

Image Pickers | A categorized directory of libraries and tools for Android

android-arsenal.com

 

2. 그래도 앨범 액티비티 (갤러리 액티비티)를 만들기 위해서 어떤 라이브러리를 선택해서 사용해야할지 확실하게 검토할 시간이 부족했다.

https://www.quora.com/Which-is-the-best-image-picker-library-for-Android

quora  에 좋은 질문 글이 있었다.

 

I recommend you to go with github, I mean go to the Build software better, together and search for it you will get more then 1 with given example of it,

here is some library:-

  1. esafirm/android-image-picker
  2. A categorized directory of libraries and tools for Android | Android-Arsenal.com
  3. Android Simplest Image Picker Library
  4. nguyenhoanglam/ImagePicker

I say you to go through all of the above websites, coz all above provided link has its own pros & cons,

 

https://androiddvlpr.com/android-image-picker-library/

 

3. 시간이 부족해서 더 찾아보지 못했는데, image picker 가 아니더라도, glide 와 같은 라이브러리를 이용해서도 앨범 액티비티를 만들 수 있다는 사실을 알았다.

https://javapapers.com/android/android-image-gallery-example-app-using-glide-library/

 

4. 그래도 회의중에 이미지를 pick 해야한다는 내용이 나왔던 것 같으므로, 일단은 image picker 라이브러리를 이용하기로 결정했다

https://github.com/esafirm/android-image-picker

Comments