PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV Mobile 2024 → is Tablet?
is Tablet?
Started by adrianoboller, Nov., 18 2014 2:39 PM - No answer
Registered member
3,660 messages
Popularité : +175 (223 votes)
Posted on November, 18 2014 - 2:39 PM
import android.content.res.Configuration;

// Returns True if the device that runs the application is a tablet
PUBLIC static boolean isTablet(){
RETURN (getApplicationContext().getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_LARGE;
}