본문 바로가기

전체 글

이미지 로딩 관련 http://helloworld.naver.com/helloworld/429368 https://code.google.com/p/android-query/wiki/ImageLoading https://github.com/nostra13/Android-Universal-Image-Loader 더보기
Volley 관련 참조 링크Volleyhttps://gist.github.com/benelog/5981448 더보기
라이브러리 라이브러리 universual image loader https://github.com/nostra13/Android-Universal-Image-Loader otto https://github.com/square/otto photoview https://github.com/chrisbanes/PhotoView sticky listview https://github.com/emilsjolander/StickyListHeaders facebook https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/ gcm https://code.google.com/p/gcm/ twitter4j http://twitter4j.or.. 더보기
안드로이드 화면 해상도 얻기 DisplayMetrics displayMetrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(displayMetrics); int width = displayMetrics.widthPixels; int height = displayMetrics.heightPixels; 출처 : http://blog.daum.net/dreamswing/7 더보기
태블릿 확인 하기 static boolean isTablet (Context context) { // TODO: This hacky stuff goes away when we allow users to target devices int xlargeBit = 4; // Configuration.SCREENLAYOUT_SIZE_XLARGE; // upgrade to HC SDK to get this Configuration config = context.getResources().getConfiguration(); return (config.screenLayout & xlargeBit) == xlargeBit; } http://stackoverflow.com/questions/9478793/how-to-know-its-pho.. 더보기
Google I/O 2013 - Volley: Easy, Fast Networking for Android http://www.kpbird.com/2013/05/volley-easy-fast-networking-for-android.html 더보기
WWDC 2013 keynote Watch streaming video http://www.apple.com/apple-events/june-2013/ 더보기
url에서 파일명, 확장자 추출 String fileName = url.substring( url.lastIndexOf('/')+1, url.length() ); String fileNameWithoutExtn = fileName.substring(0, fileName.lastIndexOf('.')); 더보기