본문 바로가기

프로그래밍/Android

ip주소로 위치정보 가져오기 GPS를 사용하지 않고, IP주소를 이용해 위치(좌표)정보를 얻을 수 있다. 간단하게 다음과 같이 주소를 요청 하면 http://ip-api.com/json 아래와 같은 결과 값을 얻을 수 있다. {"as":"AS4766 Korea Telecom","city":"Seoul","country":"Republic of Korea","countryCode":"KR","isp":"Korea Telecom","lat":37.5111,"lon":126.9743,"org":"Korea Telecom","query":"220.76.254.166","region":"11","regionName":"Seoul","status":"success","timezone":"Asia/Seoul","zip":""} 위치 좌표가 상세.. 더보기
이미지 로딩 관련 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 더보기
페이스북 스타일 슬라이드 android-facebook-style-slide 페이스북 스타일 슬라이드 메뉴 화면구성 하기 링크 : http://stackoverflow.com/questions/8657894/android-facebook-style-slide/8673805#8673805 샘플데모 : https://github.com/gitgrimbo/android-sliding-menu-demo 더보기