본문 바로가기

프로그래밍119

Android getCountryCode public static String getCountryCode(Context context) { Locale locale = context.getResources().getConfiguration().locale; String countryCode = locale.getCountry(); return countryCode; } getCountry()한국 : KR중국 : CN 2015. 3. 16.
Android 기기별 해상도 ㅁ 삼성갤럭시s, 갤럭시u, 갤럭시k, 갤럭시a, 갤럭시s2 - 800 x 480갤럭시s3 - 1280 x 720갤럭시탭 - 1280 x 720갤럭시 노트, 갤럭시탭2 - 1280 x 800 ㅁ 옵티머스옵티머스, 옵티머스z, 옵티머스q - 800 x 480옵티머스 뷰 - 1024 x 768 ㅁ 소니엑스페리아 x10 - 854 x 480 ㅁ KT야누스(KM-S200) - 960 x 540 ㅁ 모토로라모토로이, 모토쿼티, 모토그램, 디파이 - 854 x 480Droid RAZR M, RAZR XT910S(K) - 540 x 960ATRIX MB860(861) - 540 x 960Droid RAZR HD, Droid RAZR MAXX HD - 1280 x 720 ㅁ HTC디자이어, 디자이어HD, 넥서스원, 센.. 2015. 3. 10.
iOS 기기별 해상도 Devices screen sizes and orientations iPhone 3 - 480 x 320 iPhone 4 - 960 x 640 iPhone 5 - 1136 x 640 iPhone 6 - 1334 x 750 iPhone 6 Plus - 1920 x 1080 iPad, iPad 2, iPad Mini - 1024 x 768 New iPad - 2048 x 1536 참고 Layout | Apple Developer Documentation A consistent layout that adapts to various contexts makes your experience more approachable and helps people enjoy their favorite apps and games.. 2015. 3. 10.
HTML redirect Prepare to be redirected!This page is a time delay redirect, please update your bookmarks to our new location! 2015. 3. 3.
Android getBitmapFromServer(서버에서 이미지 데이터를 가져와 비트맵으로 반환) /** * 서버에서 이미지 데이터를 가져와 비트맵으로 반환 * * @param context * @param imageName * @param iv * @param baseResource * @return */ @SuppressWarnings("deprecation") public static void getBitmapFromServer(Context context, String downloadUrl, String imageName, final ImageView iv, int baseResource, SimpleImageLoadingListener listener) { if (!TextUtils.isEmpty(imageName)) { iv.setVisibility(View.VISIBLE); ImageLo.. 2015. 3. 2.