Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to determine current device category ?

Not the density, but the screen type.

Thanks

share|improve this question

4 Answers

up vote 170 down vote accepted

You can use the Configuration.screenLayout bitmask.

Example:

if ((getResources().getConfiguration().screenLayout & 
    Configuration.SCREENLAYOUT_SIZE_MASK) == 
        Configuration.SCREENLAYOUT_SIZE_LARGE) {
    // on a large screen device ...

}
share|improve this answer
19  
To get x-large detection, make sure you use target android-3.0 in your project. Or use the static value 4 for x-large. – Peterdk Oct 14 '11 at 16:19
Some devices can have an UNDEFINED size of the screen, so can be useful also check with Configuration.SCREENLAYOUT_SIZE_UNDEFINED. – anivaler Apr 11 at 10:25

This code fleshes out the answer above, displaying the screen size as a Toast. Beneath screen size code is additional code to display density as a Toast.

    //Determine screen size
    if ((getResources().getConfiguration().screenLayout &      Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_LARGE) {     
        Toast.makeText(this, "Large screen",Toast.LENGTH_LONG).show();

    }
    else if ((getResources().getConfiguration().screenLayout &      Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_NORMAL) {     
        Toast.makeText(this, "Normal sized screen" , Toast.LENGTH_LONG).show();

    } 
    else if ((getResources().getConfiguration().screenLayout &      Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_SMALL) {     
        Toast.makeText(this, "Small sized screen" , Toast.LENGTH_LONG).show();
    }
    else {
        Toast.makeText(this, "Screen size is neither large, normal or small" , Toast.LENGTH_LONG).show();
    }




    //Determine density
    DisplayMetrics metrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(metrics);
        int density = metrics.densityDpi;

        if (density==DisplayMetrics.DENSITY_HIGH) {
            Toast.makeText(this, "DENSITY_HIGH... Density is " + String.valueOf(density),  Toast.LENGTH_LONG).show();
        }
        else if (density==DisplayMetrics.DENSITY_MEDIUM) {
            Toast.makeText(this, "DENSITY_MEDIUM... Density is " + String.valueOf(density),  Toast.LENGTH_LONG).show();
        }
        else if (density==DisplayMetrics.DENSITY_LOW) {
            Toast.makeText(this, "DENSITY_LOW... Density is " + String.valueOf(density),  Toast.LENGTH_LONG).show();
        }
        else {
            Toast.makeText(this, "Density is neither HIGH, MEDIUM OR LOW.  Density is " + String.valueOf(density),  Toast.LENGTH_LONG).show();
        }
share|improve this answer
The toast is nice for deving. – MinceMan Dec 28 '11 at 5:20

Thanks for the answers above, that helped me a lot :-) But for those (like me) forced to still support Android 1.5 we can use java reflexion for being backward compatible:

        Configuration conf = getResources().getConfiguration();
    int screenLayout = 1; // application default behavior
    try {
        Field field = conf.getClass().getDeclaredField("screenLayout");
        screenLayout = field.getInt(conf);
    } catch (Exception e) {
        // NoSuchFieldException or related stuff
    }

    // Configuration.SCREENLAYOUT_SIZE_MASK == 15
    int screenType = screenLayout & 15;

    // Configuration.SCREENLAYOUT_SIZE_SMALL == 1
    // Configuration.SCREENLAYOUT_SIZE_NORMAL == 2
    // Configuration.SCREENLAYOUT_SIZE_LARGE == 3
    // Configuration.SCREENLAYOUT_SIZE_XLARGE == 4

    if (screenType == 1) {
        ...
    } else if (screenType == 2) {
        ...
    } else if (screenType == 3) {
        ...
    } else if (screenType == 4) {
        ...
    } else { // undefined
        ...
    }
share|improve this answer
You can target the latest version of the platform and reference the constants from the Configuration class. These are static final values that will be inlined at compile time (that is, they will be replaced by their actual values), so your code won't break on older versions of the platform. – Karakuri Dec 26 '12 at 17:14
Nice I didn't know that... Are you talking about android:targetSdkVersion ? – A. Masson Feb 27 at 16:46
Yes, that how you would target a particular version. Most people (at least that I have seen) set their targetSdkVersion to the latest release. – Karakuri Feb 27 at 23:41

If you want to easily know the screen density and size of an Android device, you can use this free app (no permission required): https://market.android.com/details?id=com.jotabout.screeninfo

share|improve this answer
2  
This question is not about a specific device, its about programming for multiple divice profiles (which is an important software development process when developing for mobile platforms). – mtmurdock May 8 '12 at 2:16
That's a good app. Helpful in testing. – Igor Ganapolsky May 23 '12 at 16:26
good app to know is available on market - also would be nice to see the code the app uses to come up with it's info – Stan Kurdziel Sep 27 '12 at 22:00
3  
@StanKurdziel The source code is published under the MIT open-source license and is available at: github.com/mportuesisf/ScreenInfo – mmathieum Oct 15 '12 at 23:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.