본문 바로가기

프로그래밍

라이브러리 라이브러리 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 더보기
url에서 파일명, 확장자 추출 String fileName = url.substring( url.lastIndexOf('/')+1, url.length() ); String fileNameWithoutExtn = fileName.substring(0, fileName.lastIndexOf('.')); 더보기
페이스북 스타일 슬라이드 android-facebook-style-slide 페이스북 스타일 슬라이드 메뉴 화면구성 하기 링크 : http://stackoverflow.com/questions/8657894/android-facebook-style-slide/8673805#8673805 샘플데모 : https://github.com/gitgrimbo/android-sliding-menu-demo 더보기
안드로이드 avd 경로 변경 android avd 경로 변경 안드로이드 avd 경로 변경 더보기
your project contains error(s) please fix them before running your application 프로젝트 만들고 바로 실행 시켰는데 오류메시지 박스 your project contains error(s) please fix them before running your application 해결방법 : 검색 해보니 이것이 제일 많이 있는 방법 -> project - clean 이 방법으로도 안되서 찾았는데일단은 Problems 창 확인 후 에러 내용 DescriptionResourcePathLocationTypeError generating final archive: Debug Certificate expired on 12. 4. 1 오후 8:20db_testUnknownAndroid Packaging Problem 해결방법 : C:\Users\..\.android\debug.keystore debu.. 더보기