공부/Android

[안드로이드 라이브러리] PolyPicker(이미지 다중 선택) - NullPointerException 해결방법

JangGiraffe 2015. 3. 26. 10:00

PolyPicker는 다중 이미지를 선택,캡쳐(사진촬영) 할 수 있는 기능이 있는 Android library인데요.

참고&이용 : https://github.com/jaydeepw/poly-picker

 

이 라이브러리를 끌어오는 과정에서 제 프로젝트로 가져오기만 하면 NullpointerException이 발생했는데요, 그 해결방법은 간단했습니다!

 

 

 

 *해결방법*

https://github.com/jaydeepw/poly-picker/issues/28 의 azam3d 님의 댓글을 참고해서 해결했습니다.

This is step by step guide to change particular activity theme.
In styles.xml, add this lines

아래와 같은 스타일을 style.xml에 추가해주세요!

<style name="HoloTheme" parent="@android:style/Theme.Holo.Light">

</style>

In AndroidManifest.xml change these lines to these

매니패스트에서 아래와 같이 바꿔주세요!

<activity android:name="nl.changer.polypicker.ImagePickerActivity"
          android:theme="@style/HoloTheme"/>

No more crash after that. 

 

반응형