Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public boolean isTablet(Context context) {
- TelephonyManager manager = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
- if (manager.getPhoneType() == TelephonyManager.PHONE_TYPE_NONE) {
- //Tablet
- return true;
- }
- else {
- //Mobile
- return false
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment