안드로이드에서 태블릿인지 폰인지 구분하는 방법
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-phone-or-tablet
'안드로이드 개발 팁' 카테고리의 다른 글
android image cache (universal image loader, LruCache) (1) | 2014.02.17 |
---|---|
android 버튼 배경 투명으로 하는 방법 (0) | 2014.02.12 |
android 다이알로그 각종 속성 정리 (0) | 2014.02.04 |
안드로이드 문자열 저절로 흐르게 (0) | 2014.01.23 |
android 색상표 (0) | 2013.12.16 |