IT_Programming/Android_Java 347

Swipe/Pull to Refresh for Android RecyclerView (or any other vertically scrolling view)

출처: http://sapandiwakar.in/pull-to-refresh-for-android-recyclerview-or-any-other-vertically-scrolling-view/ SwipeRefreshLayout has been in the support library for quite some time. It is a standard (and probably the easiest) way to implement the common Pull to Refresh pattern in Android. The SwipeRefreshLayout should be used whenever the user can refresh the contents of a v..

안드로이드 여러 APK 를 하나의 어플리케이션으로 관리하기

출처: http://blog.naver.com/huewu/110120437386 Multiple APK Support 이 포스트는 구글 개발자 사이트의 내용을 기반으로 작성되었습니다. 배경 이야기 안드로이드 에코 시스템 상에서 하나의 APK 는 하나의 어플리케이션을 뜻 합니다. 그리고 각각의 APK 는 서로 다른 패키지 이름을 갖곤 하지요. 그런데, ..

Multidex를 사용할 수 없는 Eclipse에서 JAR에 dex를 추가하여 메소드 65536개 오류 방지하기

출처: https://arincblossom.wordpress.com/2015/07/15/multidex를-사용할-수-없는-eclipse에서-jar에-dex를-추가하여-메소드-65536/ 흔한 라이브러리 왕창 쓰면 나는 오류 Conversion to Dalvik format failed: Unable to execute dex: method ID not in [0, 0xffff]: 65536 해결법 출처 http://stackoverflow.com/questions/24135158/how-to-load-a-jar-from-asse..

JNI Local Reference Changes in ICS ( ICS 부터 바뀌는 JNI Local Reference )

출처: http://aroundck.tistory.com/635 http://android-developers.blogspot.com/2011/11/jni-local-reference-changes-in-ics.html 오늘은 "JNI Local Reference Changes in ICS" 를 주제로 알아보겠습니다. JNI Local Reference Changes in ICS 당신이 native code 를 쓰는 것이 아닌 native 함수만 사용한다면 그만 읽어도 됩니다. 하지만, 당신이 JNI ..